projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Documentation update.
[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