mirror of https://github.com/BOINC/boinc.git
MGR: async GUI RPCs: Fix show_graphics RPC.
svn path=/trunk/boinc/; revision=15888
This commit is contained in:
parent
0e5a500dd2
commit
39263d4fe3
|
@ -6786,3 +6786,9 @@ Eric 18 Aug 2008
|
|||
|
||||
lib/
|
||||
app_ipc.[Ch]
|
||||
|
||||
Charlie 18 Aug 2008
|
||||
- MGR: async GUI RPCs: Fix show_graphics RPC.
|
||||
|
||||
clientgui/
|
||||
AsyncRPC.h
|
||||
|
|
|
@ -184,7 +184,7 @@ public:
|
|||
{ return RPC_Wait(RPC_GET_DISK_USAGE, (void*)&arg1); }
|
||||
int show_graphics(
|
||||
const char* project, const char* result_name, int graphics_mode, DISPLAY_INFO& di)
|
||||
{ return RPC_Wait(RPC_SHOW_GRAPHICS, (void*)&project, (void*)result_name, (void*)&graphics_mode, (void*)&di); }
|
||||
{ return RPC_Wait(RPC_SHOW_GRAPHICS, (void*)project, (void*)result_name, (void*)&graphics_mode, (void*)&di); }
|
||||
int project_op(PROJECT& arg1, const char* op)
|
||||
{ return RPC_Wait(RPC_PROJECT_OP, (void*)&arg1, (void*)op); }
|
||||
int set_run_mode(int mode, double duration)
|
||||
|
|
Loading…
Reference in New Issue