X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=Usermode%2FApplications%2Faxwin3_src%2Finclude%2Fwidget_messages.h;h=f36c729c10e313548864f408df98a849311232af;hb=58716e08fd3ce62861636a300879e10e930b177b;hp=0a4b2505f03e758f69a9c39153465a1bdacf7aa0;hpb=8c12dd82f2a4e01d8de5d29db6d4fdd0802c7e83;p=tpg%2Facess2.git diff --git a/Usermode/Applications/axwin3_src/include/widget_messages.h b/Usermode/Applications/axwin3_src/include/widget_messages.h index 0a4b2505..f36c729c 100644 --- a/Usermode/Applications/axwin3_src/include/widget_messages.h +++ b/Usermode/Applications/axwin3_src/include/widget_messages.h @@ -12,6 +12,7 @@ enum { // Control (Client->Server) messages MSG_WIDGET_CREATE = 0x1000, + MSG_WIDGET_CREATESUBWIN, MSG_WIDGET_DELETE, MSG_WIDGET_SETFOCUS, MSG_WIDGET_SETFLAGS, @@ -39,6 +40,16 @@ typedef struct char DebugName[]; } tWidgetMsg_Create; +typedef struct +{ + uint32_t Parent; + uint32_t NewID; + uint32_t Type; + uint32_t Flags; + uint32_t WindowHandle; + char DebugName[]; +} tWidgetMsg_CreateSubWin; + typedef struct { uint32_t WidgetID;