repo.or.cz
/
wine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added headers for the msvcrt library.
[wine.git]
/
include
/
mouse.h
blob
7e5b9bad2dfc5dc246a2288907891af399daeac6
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