Changes between Version 11 and Version 12 of BasicApi


Ignore:
Timestamp:
Oct 4, 2007, 4:16:45 PM (17 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BasicApi

    v11 v12  
    234234This returns non-zero (True) if the application is running standalone, and zero (False) if the application is running under the control of the BOINC client.
    235235
     236== Registering a timer handler ==
     237
     238{{{
     239typedef void (*FUNC_PTR)();
     240void boinc_register_timer_callback(FUNC_PTR);
     241}}}
     242
     243This registers a timer handler function,
     244which will be called once per second.
     245
    236246== Requesting network connection ==
    237247