Changes between Version 12 and Version 13 of BasicApi
- Timestamp:
- Oct 18, 2007, 12:00:47 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BasicApi
v12 v13 14 14 15 15 {{{ 16 #!c++ 16 17 int boinc_init(); 17 18 }}} … … 22 23 23 24 {{{ 25 #!c++ 24 26 int boinc_finish(int status); 25 27 }}} … … 32 34 33 35 {{{ 36 #!c++ 34 37 int boinc_resolve_filename(char *logical_name, char *physical_name, int len); 35 38 }}} … … 38 41 39 42 {{{ 43 #!c++ 40 44 int boinc_resolve_filename_s(char *logical_name, std::string& physical_name); 41 45 }}} … … 44 48 45 49 {{{ 50 #!c++ 46 51 f = fopen("my_file", "r"); 47 52 }}} … … 50 55 51 56 {{{ 57 #!c++ 52 58 string resolved_name; 53 59 retval = boinc_resolve_filename_s("my_file", resolved_name); … … 63 69 64 70 {{{ 71 #!c++ 65 72 boinc_fopen(char* path, char* mode); 66 73 }}} … … 75 82 76 83 {{{ 84 #!c++ 77 85 int boinc_time_to_checkpoint(); 78 86 }}} … … 81 89 82 90 {{{ 91 #!c++ 83 92 void boinc_checkpoint_completed(); 84 93 }}} … … 89 98 90 99 {{{ 100 #!c++ 91 101 void boinc_begin_critical_section(); 92 102 void boinc_end_critical_section(); … … 102 112 103 113 {{{ 114 #!c++ 104 115 class MFILE { 105 116 public: … … 121 132 122 133 {{{ 134 #!c++ 123 135 void boinc_ops_per_cpu_second(double floating_point_ops, double integer_ops); 124 136 }}} … … 127 139 128 140 {{{ 141 #!c++ 129 142 void boinc_ops_cumulative(double floating_point_ops, double integer_ops); 130 143 }}} … … 137 150 138 151 {{{ 152 #!c++ 139 153 boinc_fraction_done(double fraction_done); 140 154 }}} … … 143 157 144 158 {{{ 159 #!c++ 145 160 double boinc_get_fraction_done(); 146 161 }}} … … 153 168 154 169 {{{ 170 #!c++ 155 171 int boinc_get_init_data_p(APP_INIT_DATA*); 156 172 int boinc_get_init_data(APP_INIT_DATA&); … … 219 235 220 236 {{{ 237 #!c++ 221 238 int boinc_wu_cpu_time(double &cpu_time); 222 239 }}} … … 229 246 230 247 {{{ 248 #!c++ 231 249 int boinc_is_standalone(void); 232 250 }}} … … 237 255 238 256 {{{ 257 #!c++ 239 258 typedef void (*FUNC_PTR)(); 240 259 void boinc_register_timer_callback(FUNC_PTR); … … 254 273 255 274 {{{ 275 #!c++ 256 276 void boinc_need_network(); 257 277 int boinc_network_poll();