/********************************************************************** ** ** ** rpc_ic.x - X file for rpc interface to tcs3 ic message queue ** ** ** **********************************************************************/ /*------------------------------------------------------- ** ic messge structure - used for RPC and MSGQ for relaying ** text commands & replys. These are used by the ** rpc.ic for exchanging command between rpc.ic and TCS3 apps. ** */ struct msg_t /* message structure for sending text commands */ { long rc; /* Return code of text command is placed here */ long pcode; /* permission code of command */ char txt[512]; /* Used for command text return string. */ }; /*---------------------------------------- ** **--------------------------------------- */ program TCS_IC_RPC { version TCS_IC_RPC_VER01 { struct msg_t TCS_IC_CMD_IO( struct msg_t ) = 1; } = 1; } = 0x20000030;