Changes between Version 43 and Version 44 of GuiRpc
- Timestamp:
- Nov 16, 2016, 2:30:52 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GuiRpc
v43 v44 12 12 13 13 * 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] 16 18 gives a usage example. 17 All member functions return an integer error code.18 19 * 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/ 21 24 * A Python binding: https://github.com/MestreLion/boinc-indicator 22 25 … … 28 31 The rest of this document describes the C++ interface. 29 32 The functions listed are members of the '''RPC_CLIENT''' class. 33 All member functions return an integer error code. 30 34 31 35 == Connecting ==