#define GP_VERSION
struct GPConfig;
struct GPTileReq;
struct GPTileAck;
struct GPTileData;
struct GPParam;
struct GPParamDef;
struct GPProcRun;
struct GPProcReturn;
struct GPProcInstall;
struct GPProcUninstall;
void gp_init (void);
gboolean gp_quit_write (GIOChannel *channel);
gboolean gp_config_write (GIOChannel *channel,
GPConfig *config);
gboolean gp_tile_req_write (GIOChannel *channel,
GPTileReq *tile_req);
gboolean gp_tile_ack_write (GIOChannel *channel);
gboolean gp_tile_data_write (GIOChannel *channel,
GPTileData *tile_data);
gboolean gp_proc_run_write (GIOChannel *channel,
GPProcRun *proc_run);
gboolean gp_proc_return_write (GIOChannel *channel,
GPProcReturn *proc_return);
gboolean gp_temp_proc_run_write (GIOChannel *channel,
GPProcRun *proc_run);
gboolean gp_temp_proc_return_write (GIOChannel *channel,
GPProcReturn *proc_return);
gboolean gp_proc_install_write (GIOChannel *channel,
GPProcInstall *proc_install);
gboolean gp_proc_uninstall_write (GIOChannel *channel,
GPProcUninstall *proc_uninstall);
gboolean gp_extension_ack_write (GIOChannel *channel);
gboolean gp_request_wakeups_write (GIOChannel *channel); |