mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 08:13:18 +00:00
25 lines
397 B
C
25 lines
397 B
C
/*
|
|
* MOUSE driver interface
|
|
*
|
|
* Copyright 1998 Ulrich Weigand
|
|
*/
|
|
|
|
#ifndef __WINE_MOUSE_H
|
|
#define __WINE_MOUSE_H
|
|
|
|
#include "windef.h"
|
|
#include "user.h"
|
|
|
|
/* Wine internals */
|
|
|
|
#define WINE_MOUSEEVENT_MAGIC ( ('M'<<24)|('A'<<16)|('U'<<8)|'S' )
|
|
typedef struct _WINE_MOUSEEVENT
|
|
{
|
|
DWORD magic;
|
|
DWORD keyState;
|
|
DWORD time;
|
|
HWND hWnd;
|
|
} WINE_MOUSEEVENT;
|
|
|
|
#endif /* __WINE_MOUSE_H */
|
|
|