X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Faxwin3_src%2Finclude%2Fmenu_messages.h;h=12d7ba5a5e42a0e74d88ff748682bc94135c7c09;hb=ed78a9ac44c440180c37c1cbbbd7ecbc4d9076d7;hp=04dcd2daf7e089943e8fa731cfa48960ce557e61;hpb=21192b41da0f87dba07dac08b2d814b0976d929c;p=tpg%2Facess2.git diff --git a/Usermode/Applications/axwin3_src/include/menu_messages.h b/Usermode/Applications/axwin3_src/include/menu_messages.h index 04dcd2da..12d7ba5a 100644 --- a/Usermode/Applications/axwin3_src/include/menu_messages.h +++ b/Usermode/Applications/axwin3_src/include/menu_messages.h @@ -10,12 +10,11 @@ #include "ipcmessages.h" -enum eMenuMessages +// Client->Server IPC methods +enum eMenuIPCCalls { - MSG_MENU_ADDITEM = 0x1000, - MSG_MENU_SETFLAGS, - - MSG_MENU_SELECT + IPC_MENU_ADDITEM, + IPC_MENU_SETFLAGS }; typedef struct @@ -24,14 +23,20 @@ typedef struct uint16_t Flags; uint32_t SubMenuID; char Label[]; -} tMenuMsg_AddItem; +} tMenuIPC_AddItem; typedef struct { uint16_t ID; uint16_t Value; uint16_t Mask; -} tMenuMsg_SetFlags; +} tMenuIPC_SetFlags; + +// Server->Client messages +enum eMenuMessages +{ + MSG_MENU_SELECT = 0x1000 +}; typedef struct {