12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- #ifndef WA_HOTKEYS
- #define WA_HOTKEYS
- #define HKF_BRING_TO_FRONT 0x1
- #define HKF_HWND_WPARAM 0x2
- #define HKF_COPY 0x4
- #define HKF_PLPOS_WPARAM 0x8
- #define HKF_ISPLAYING_WL 0x10
-
- #define HKF_SHOWHIDE 0x20
- #define HKF_NOSENDMSG 0x40
- #define HKF_COPYW 0x80
- #define HKF_UNICODE_NAME 0x100
- #define HKF_DISABLED 0x80000000
- #include "WinDef.h"
- typedef struct {
- char *name;
- DWORD flags;
- UINT uMsg;
- WPARAM wParam;
- LPARAM lParam;
- char *id;
- HWND wnd;
-
- int extended[6];
- } genHotkeysAddStruct;
- #endif
|