1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- #ifndef _WA_ML_IPC_H_
- #define _WA_ML_IPC_H_
- #include <windows.h>
- #include <stddef.h>
- typedef struct {
- int mode;
-
-
-
-
-
-
- HMENU build_hMenu;
- int build_start_id;
- int build_end_id;
-
- int data_type;
- int menu_id;
- void *data;
- HWND hwnd;
-
-
- intptr_t ctx[32];
- } librarySendToMenuStruct;
- #endif
|