diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/w32term.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/w32term.h b/src/w32term.h index 66121078187..8dce3c8d100 100644 --- a/src/w32term.h +++ b/src/w32term.h | |||
| @@ -806,6 +806,21 @@ extern BOOL parse_button (); | |||
| 806 | #define RIGHT_WIN_PRESSED 0x4000 | 806 | #define RIGHT_WIN_PRESSED 0x4000 |
| 807 | #define APPS_PRESSED 0x2000 | 807 | #define APPS_PRESSED 0x2000 |
| 808 | 808 | ||
| 809 | /* When compiling on Windows 9x/ME and NT 3.x, the following are not defined | ||
| 810 | (even though they are supported on 98 and ME. */ | ||
| 811 | #ifndef WM_MOUSELEAVE | ||
| 812 | #define WM_MOUSELEAVE 0x02A3 | ||
| 813 | #define TME_LEAVE 0x00000002; | ||
| 814 | |||
| 815 | typedef struct tagTRACKMOUSEEVENT | ||
| 816 | { | ||
| 817 | DWORD cbSize; | ||
| 818 | DWORD dwFlags; | ||
| 819 | HWND hwndTrack; | ||
| 820 | DWORD dwHoverTime; | ||
| 821 | } TRACKMOUSEEVENT; | ||
| 822 | #endif | ||
| 823 | |||
| 809 | struct image; | 824 | struct image; |
| 810 | struct face; | 825 | struct face; |
| 811 | 826 | ||