Changes between Version 43 and Version 44 of GuiRpc


Ignore:
Timestamp:
Nov 16, 2016, 2:30:52 PM (7 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GuiRpc

    v43 v44  
    1212
    1313 * BOINC has a C++ binding, consisting of the GUI_RPC class.
    14   The interface is in [source:boinc-v2/lib/gui_rpc_client.h lib/gui_rpc_client.h],
    15   and the program [source:boinc-v2/client/boinc_cmd.cpp boinc_cmd.cpp]
     14  The interface is in
     15  [https://github.com/BOINC/boinc/blob/master/lib/gui_rpc_client.h lib/gui_rpc_client.h],
     16  and the program
     17  [https://github.com/BOINC/boinc/blob/master/client/boinc_cmd.cpp boinc_cmd.cpp]
    1618  gives a usage example.
    17   All member functions return an integer error code.
    1819 * Another C++ binding is part of [https://code.google.com/p/boinctui/ boinctui].
    19  * A Java binding: [source:boinc-v2/android/BOINC/src/edu/berkeley/boinc/rpc/].
    20  * A .Net binding: https://boincguirpc.codeplex.com/
     20 * A Java binding:
     21 [https://github.com/BOINC/boinc/tree/master/android/BOINC/src/edu/berkeley/boinc/rpc].
     22 * A .Net binding: https://github.com/chausner/BoincRpc
     23 * An older .Net binding: https://boincguirpc.codeplex.com/
    2124 * A Python binding: https://github.com/MestreLion/boinc-indicator
    2225
     
    2831The rest of this document describes the C++ interface.
    2932The functions listed are members of the '''RPC_CLIENT''' class.
     33All member functions return an integer error code.
    3034
    3135== Connecting ==