Moved window move/resize syscommand handling to the graphics driver.
[wine/multimedia.git] / include / mouse.h
blob7e5b9bad2dfc5dc246a2288907891af399daeac6
1 /*
2 * MOUSE driver interface
4 * Copyright 1998 Ulrich Weigand
5 */
7 #ifndef __WINE_MOUSE_H
8 #define __WINE_MOUSE_H
10 #include "windef.h"
11 #include "user.h"
13 /* Wine internals */
15 #define WINE_MOUSEEVENT_MAGIC ( ('M'<<24)|('A'<<16)|('U'<<8)|'S' )
16 typedef struct _WINE_MOUSEEVENT
18 DWORD magic;
19 DWORD keyState;
20 DWORD time;
21 HWND hWnd;
22 } WINE_MOUSEEVENT;
24 #endif /* __WINE_MOUSE_H */