Changes between Version 9 and Version 10 of BackendUtilities


Ignore:
Timestamp:
Apr 19, 2012, 1:49:52 AM (12 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BackendUtilities

    v9 v10  
    66
    77{{{
    8 struct FILE_INFO {
     8struct OUTPUT_FILE_INFO {
    99    std::string path;
    1010    bool optional;
    1111};
    1212
    13 extern int get_output_file_info(RESULT& result, FILE_INFO&);
    14 extern int get_output_file_infos(RESULT& result, std::vector<FILE_INFO>&);
     13extern int get_output_file_info(RESULT& result, OUTPUT_FILE_INFO&);
     14extern int get_output_file_infos(RESULT& result, std::vector<OUTPUT_FILE_INFO>&);
    1515extern int get_output_file_path(RESULT& result, std::string&);
    1616extern int get_output_file_paths(RESULT& result, std::vector<std::string>&);
     
    1818
    1919Returns the paths of a result's output file(s).
    20 The FILE_INFO variants also return each files "optional" attribute.
     20The OUTPUT_FILE_INFO variants also return each file's "optional" attribute.
    2121
    2222