mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2026-01-05 00:50:53 +00:00
stuff
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@131 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
@@ -18,8 +18,10 @@ typedef struct _MwVoidKeyValue MwVoidKeyValue;
|
||||
typedef struct _MwFont MwFont;
|
||||
#ifdef _MILSKO
|
||||
typedef struct _MwWidget *MwWidget, MwWidgetRec;
|
||||
typedef struct _MwMenu * MwMenu, MwMenuRec;
|
||||
#else
|
||||
typedef void* MwWidget;
|
||||
typedef void* MwMenu;
|
||||
#endif
|
||||
typedef void (*MwHandler)(MwWidget handle);
|
||||
typedef void (*MwUserHandler)(MwWidget handle, void* user_data, void* call_data);
|
||||
@@ -83,6 +85,12 @@ struct _MwWidget {
|
||||
MwUserHandlerKeyValue* handler;
|
||||
MwVoidKeyValue* data;
|
||||
};
|
||||
|
||||
struct _MwMenu {
|
||||
char* name;
|
||||
MwWidget wsub;
|
||||
MwMenu* sub;
|
||||
};
|
||||
#endif
|
||||
|
||||
struct _MwClass {
|
||||
|
||||
Reference in New Issue
Block a user