Changes between Version 12 and Version 13 of BasicApi


Ignore:
Timestamp:
Oct 18, 2007, 12:00:47 PM (17 years ago)
Author:
Didactylos
Comment:

hilight

Legend:

Unmodified
Added
Removed
Modified
  • BasicApi

    v12 v13  
    1414
    1515{{{
     16#!c++
    1617int boinc_init();
    1718}}}
     
    2223
    2324{{{
     25#!c++
    2426int boinc_finish(int status);
    2527}}}
     
    3234
    3335{{{
     36#!c++
    3437int boinc_resolve_filename(char *logical_name, char *physical_name, int len);
    3538}}}
     
    3841
    3942{{{
     43#!c++
    4044int boinc_resolve_filename_s(char *logical_name, std::string& physical_name);
    4145}}}
     
    4448
    4549{{{
     50#!c++
    4651f = fopen("my_file", "r");
    4752}}}
     
    5055
    5156{{{
     57#!c++
    5258string resolved_name;
    5359retval = boinc_resolve_filename_s("my_file", resolved_name);
     
    6369
    6470{{{
     71#!c++
    6572boinc_fopen(char* path, char* mode);
    6673}}}
     
    7582
    7683{{{
     84#!c++
    7785int boinc_time_to_checkpoint();
    7886}}}
     
    8189
    8290{{{
     91#!c++
    8392void boinc_checkpoint_completed();
    8493}}}
     
    8998
    9099{{{
     100#!c++
    91101void boinc_begin_critical_section();
    92102void boinc_end_critical_section();
     
    102112
    103113{{{
     114#!c++
    104115class MFILE {
    105116public:
     
    121132
    122133{{{
     134#!c++
    123135void boinc_ops_per_cpu_second(double floating_point_ops, double integer_ops);
    124136}}}
     
    127139
    128140{{{
     141#!c++
    129142void boinc_ops_cumulative(double floating_point_ops, double integer_ops);
    130143}}}
     
    137150
    138151{{{
     152#!c++
    139153boinc_fraction_done(double fraction_done);
    140154}}}
     
    143157
    144158{{{
     159#!c++
    145160double boinc_get_fraction_done();
    146161}}}
     
    153168
    154169{{{
     170#!c++
    155171int boinc_get_init_data_p(APP_INIT_DATA*);
    156172int boinc_get_init_data(APP_INIT_DATA&);
     
    219235
    220236{{{
     237#!c++
    221238int boinc_wu_cpu_time(double &cpu_time);
    222239}}}
     
    229246
    230247{{{
     248#!c++
    231249int boinc_is_standalone(void);
    232250}}}
     
    237255
    238256{{{
     257#!c++
    239258typedef void (*FUNC_PTR)();
    240259void boinc_register_timer_callback(FUNC_PTR);
     
    254273
    255274{{{
     275#!c++
    256276void boinc_need_network();
    257277int boinc_network_poll();