MGR: async GUI RPCs: Fix show_graphics RPC.

svn path=/trunk/boinc/; revision=15888
This commit is contained in:
Charlie Fenton 2008-08-19 01:35:46 +00:00
parent 0e5a500dd2
commit 39263d4fe3
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -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)