Removed a number of global handle allocations and critical section
[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
12 struct tagCURSORICONINFO;
13
14 #include "pshpack1.h"
15 typedef struct _MOUSEINFO
16 {
17     BYTE msExist;
18     BYTE msRelative;
19     WORD msNumButtons;
20     WORD msRate;
21     WORD msXThreshold;
22     WORD msYThreshold;
23     WORD msXRes;
24     WORD msYRes;
25     WORD msMouseCommPort;
26 } MOUSEINFO, *LPMOUSEINFO;
27 #include "poppack.h"
28
29 typedef VOID (CALLBACK *LPMOUSE_EVENT_PROC)(DWORD,DWORD,DWORD,DWORD,DWORD);
30
31 WORD WINAPI MOUSE_Inquire(LPMOUSEINFO lpMouseInfo);
32 VOID WINAPI MOUSE_Enable(LPMOUSE_EVENT_PROC lpMouseEventProc);
33 VOID WINAPI MOUSE_Disable(VOID);
34
35 /* Wine internals */
36
37 #define WINE_MOUSEEVENT_MAGIC  ( ('M'<<24)|('A'<<16)|('U'<<8)|'S' )
38 typedef struct _WINE_MOUSEEVENT
39 {
40     DWORD magic;
41     DWORD keyState;
42     DWORD time;
43     HWND hWnd;
44
45 } WINE_MOUSEEVENT;
46
47 extern void MOUSE_SendEvent( DWORD mouseStatus, DWORD posX, DWORD posY,
48                              DWORD keyState, DWORD time, HWND hWnd );
49
50 /***********************************
51  *      MouseWheel support (defines)
52  */
53
54 #define MSH_MOUSEWHEEL "MSWHEEL_ROLLMSG"
55
56 #define WHEEL_DELTA      120
57
58 #ifndef WM_MOUSEWHEEL
59 #define WM_MOUSEWHEEL (WM_MOUSELAST+1)
60 #endif
61
62 #define MOUSEZ_CLASSNAME  "MouseZ"          
63 #define MOUSEZ_TITLE      "Magellan MSWHEEL"
64
65 #define MSH_WHEELMODULE_CLASS (MOUSEZ_CLASSNAME)
66 #define MSH_WHEELMODULE_TITLE (MOUSEZ_TITLE)
67
68 #define MSH_WHEELSUPPORT "MSH_WHEELSUPPORT_MSG"
69
70 #define MSH_SCROLL_LINES "MSH_SCROLL_LINES_MSG"
71
72 #ifndef  WHEEL_PAGESCROLL  
73 #define WHEEL_PAGESCROLL  (UINT_MAX)
74 #endif 
75
76 #ifndef SPI_SETWHEELSCROLLLINES
77 #define SPI_SETWHEELSCROLLLINES   105
78 #endif
79
80
81 /*      MouseWheel support
82 ***********************************/
83
84 #endif /* __WINE_MOUSE_H */
85