1 | /*
|
---|
2 | * ntddmou.h
|
---|
3 | *
|
---|
4 | * Mouse device IOCTL interface.
|
---|
5 | *
|
---|
6 | * This file is part of the w32api package.
|
---|
7 | *
|
---|
8 | * Contributors:
|
---|
9 | * Created by Casper S. Hornstrup <chorns@users.sourceforge.net>
|
---|
10 | *
|
---|
11 | * THIS SOFTWARE IS NOT COPYRIGHTED
|
---|
12 | *
|
---|
13 | * This source code is offered for use in the public domain. You may
|
---|
14 | * use, modify or distribute it freely.
|
---|
15 | *
|
---|
16 | * This code is distributed in the hope that it will be useful but
|
---|
17 | * WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
|
---|
18 | * DISCLAIMED. This includes but is not limited to warranties of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
---|
20 | *
|
---|
21 | */
|
---|
22 |
|
---|
23 | #ifndef __NTDDMOU_H
|
---|
24 | #define __NTDDMOU_H
|
---|
25 |
|
---|
26 | #if __GNUC__ >=3
|
---|
27 | #pragma GCC system_header
|
---|
28 | #endif
|
---|
29 |
|
---|
30 | #ifdef __cplusplus
|
---|
31 | extern "C" {
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | #include "ntddk.h"
|
---|
35 |
|
---|
36 | #define DD_MOUSE_DEVICE_NAME "\\Device\\PointerClass"
|
---|
37 | #define DD_MOUSE_DEVICE_NAME_U L"\\Device\\PointerClass"
|
---|
38 |
|
---|
39 | #define IOCTL_MOUSE_QUERY_ATTRIBUTES \
|
---|
40 | CTL_CODE(FILE_DEVICE_MOUSE, 0, METHOD_BUFFERED, FILE_ANY_ACCESS)
|
---|
41 |
|
---|
42 | DEFINE_GUID(GUID_DEVINTERFACE_MOUSE, \
|
---|
43 | 0x378de44c, 0x56ef, 0x11d1, 0xbc, 0x8c, 0x00, 0xa0, 0xc9, 0x14, 0x05, 0xdd);
|
---|
44 |
|
---|
45 | #define MOUSE_ERROR_VALUE_BASE 20000
|
---|
46 |
|
---|
47 | /* MOUSE_INPUT_DATA.ButtonFlags constants */
|
---|
48 | #define MOUSE_LEFT_BUTTON_DOWN 0x0001
|
---|
49 | #define MOUSE_LEFT_BUTTON_UP 0x0002
|
---|
50 | #define MOUSE_RIGHT_BUTTON_DOWN 0x0004
|
---|
51 | #define MOUSE_RIGHT_BUTTON_UP 0x0008
|
---|
52 | #define MOUSE_MIDDLE_BUTTON_DOWN 0x0010
|
---|
53 | #define MOUSE_MIDDLE_BUTTON_UP 0x0020
|
---|
54 | #define MOUSE_BUTTON_4_DOWN 0x0040
|
---|
55 | #define MOUSE_BUTTON_4_UP 0x0080
|
---|
56 | #define MOUSE_BUTTON_5_DOWN 0x0100
|
---|
57 | #define MOUSE_BUTTON_5_UP 0x0200
|
---|
58 | #define MOUSE_WHEEL 0x0400
|
---|
59 |
|
---|
60 | #define MOUSE_BUTTON_1_DOWN MOUSE_LEFT_BUTTON_DOWN
|
---|
61 | #define MOUSE_BUTTON_1_UP MOUSE_LEFT_BUTTON_UP
|
---|
62 | #define MOUSE_BUTTON_2_DOWN MOUSE_RIGHT_BUTTON_DOWN
|
---|
63 | #define MOUSE_BUTTON_2_UP MOUSE_RIGHT_BUTTON_UP
|
---|
64 | #define MOUSE_BUTTON_3_DOWN MOUSE_MIDDLE_BUTTON_DOWN
|
---|
65 | #define MOUSE_BUTTON_3_UP MOUSE_MIDDLE_BUTTON_UP
|
---|
66 |
|
---|
67 | /* MOUSE_INPUT_DATA.Flags constants */
|
---|
68 | #define MOUSE_MOVE_RELATIVE 0
|
---|
69 | #define MOUSE_MOVE_ABSOLUTE 1
|
---|
70 | #define MOUSE_VIRTUAL_DESKTOP 0x02
|
---|
71 | #define MOUSE_ATTRIBUTES_CHANGED 0x04
|
---|
72 |
|
---|
73 | typedef struct _MOUSE_INPUT_DATA {
|
---|
74 | USHORT UnitId;
|
---|
75 | USHORT Flags;
|
---|
76 | _ANONYMOUS_UNION union {
|
---|
77 | ULONG Buttons;
|
---|
78 | _ANONYMOUS_STRUCT struct {
|
---|
79 | USHORT ButtonFlags;
|
---|
80 | USHORT ButtonData;
|
---|
81 | } DUMMYSTRUCTNAME;
|
---|
82 | } DUMMYUNIONNAME;
|
---|
83 | ULONG RawButtons;
|
---|
84 | LONG LastX;
|
---|
85 | LONG LastY;
|
---|
86 | ULONG ExtraInformation;
|
---|
87 | } MOUSE_INPUT_DATA, *PMOUSE_INPUT_DATA;
|
---|
88 |
|
---|
89 | typedef struct _MOUSE_UNIT_ID_PARAMETER {
|
---|
90 | USHORT UnitId;
|
---|
91 | } MOUSE_UNIT_ID_PARAMETER, *PMOUSE_UNIT_ID_PARAMETER;
|
---|
92 |
|
---|
93 | /* MOUSE_ATTRIBUTES.MouseIdentifier constants */
|
---|
94 | #define MOUSE_INPORT_HARDWARE 0x0001
|
---|
95 | #define MOUSE_I8042_HARDWARE 0x0002
|
---|
96 | #define MOUSE_SERIAL_HARDWARE 0x0004
|
---|
97 | #define BALLPOINT_I8042_HARDWARE 0x0008
|
---|
98 | #define BALLPOINT_SERIAL_HARDWARE 0x0010
|
---|
99 | #define WHEELMOUSE_I8042_HARDWARE 0x0020
|
---|
100 | #define WHEELMOUSE_SERIAL_HARDWARE 0x0040
|
---|
101 | #define MOUSE_HID_HARDWARE 0x0080
|
---|
102 | #define WHEELMOUSE_HID_HARDWARE 0x0100
|
---|
103 |
|
---|
104 | typedef struct _MOUSE_ATTRIBUTES {
|
---|
105 | USHORT MouseIdentifier;
|
---|
106 | USHORT NumberOfButtons;
|
---|
107 | USHORT SampleRate;
|
---|
108 | ULONG InputDataQueueLength;
|
---|
109 | } MOUSE_ATTRIBUTES, *PMOUSE_ATTRIBUTES;
|
---|
110 |
|
---|
111 | #ifdef __cplusplus
|
---|
112 | }
|
---|
113 | #endif
|
---|
114 |
|
---|
115 | #endif /* __NTDDMOU_H */
|
---|