Changes between Version 9 and Version 10 of BackendUtilities
- Timestamp:
- Apr 19, 2012, 1:49:52 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BackendUtilities
v9 v10 6 6 7 7 {{{ 8 struct FILE_INFO {8 struct OUTPUT_FILE_INFO { 9 9 std::string path; 10 10 bool optional; 11 11 }; 12 12 13 extern int get_output_file_info(RESULT& result, FILE_INFO&);14 extern int get_output_file_infos(RESULT& result, std::vector< FILE_INFO>&);13 extern int get_output_file_info(RESULT& result, OUTPUT_FILE_INFO&); 14 extern int get_output_file_infos(RESULT& result, std::vector<OUTPUT_FILE_INFO>&); 15 15 extern int get_output_file_path(RESULT& result, std::string&); 16 16 extern int get_output_file_paths(RESULT& result, std::vector<std::string>&); … … 18 18 19 19 Returns the paths of a result's output file(s). 20 The FILE_INFO variants also return each files "optional" attribute.20 The OUTPUT_FILE_INFO variants also return each file's "optional" attribute. 21 21 22 22