Added unicode MDI client window proc.
[wine] / include / mouse.h
1 /*
2  * MOUSE driver interface
3  *
4  * Copyright 1998 Ulrich Weigand
5  */
6
7 #ifndef __WINE_MOUSE_H
8 #define __WINE_MOUSE_H
9
10 #include "windef.h"
11 #include "user.h"
12
13 /* Wine internals */
14
15 #define WINE_MOUSEEVENT_MAGIC  ( ('M'<<24)|('A'<<16)|('U'<<8)|'S' )
16 typedef struct _WINE_MOUSEEVENT
17 {
18     DWORD magic;
19     DWORD keyState;
20     DWORD time;
21     HWND hWnd;
22 } WINE_MOUSEEVENT;
23
24 #endif /* __WINE_MOUSE_H */
25