[ARMDDK]
[reactos.git] / include / ddk / kbdmou.h
1 /*
2 * kbdmou.h
3 *
4 * Structures and definitions for Keyboard/Mouse class and port drivers.
5 *
6 * This file is part of the w32api package.
7 *
8 * Contributors:
9 * Created by Filip Navara <xnavara@volny.cz>
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 #pragma once
24
25 #include <ntddkbd.h>
26 #include <ntddmou.h>
27
28 #define DD_KEYBOARD_PORT_DEVICE_NAME "\\Device\\KeyboardPort"
29 #define DD_KEYBOARD_PORT_DEVICE_NAME_U L"\\Device\\KeyboardPort"
30 #define DD_KEYBOARD_PORT_BASE_NAME_U L"KeyboardPort"
31 #define DD_POINTER_PORT_DEVICE_NAME "\\Device\\PointerPort"
32 #define DD_POINTER_PORT_DEVICE_NAME_U L"\\Device\\PointerPort"
33 #define DD_POINTER_PORT_BASE_NAME_U L"PointerPort"
34
35 #define DD_KEYBOARD_CLASS_BASE_NAME_U L"KeyboardClass"
36 #define DD_POINTER_CLASS_BASE_NAME_U L"PointerClass"
37
38 #define DD_KEYBOARD_RESOURCE_CLASS_NAME_U L"Keyboard"
39 #define DD_POINTER_RESOURCE_CLASS_NAME_U L"Pointer"
40 #define DD_KEYBOARD_MOUSE_COMBO_RESOURCE_CLASS_NAME_U L"Keyboard/Pointer"
41
42 #define POINTER_PORTS_MAXIMUM 8
43 #define KEYBOARD_PORTS_MAXIMUM 8
44
45 #define KBDMOU_COULD_NOT_SEND_COMMAND 0x0000
46 #define KBDMOU_COULD_NOT_SEND_PARAM 0x0001
47 #define KBDMOU_NO_RESPONSE 0x0002
48 #define KBDMOU_INCORRECT_RESPONSE 0x0004
49
50 #define I8042_ERROR_VALUE_BASE 1000
51 #define INPORT_ERROR_VALUE_BASE 2000
52 #define SERIAL_MOUSE_ERROR_VALUE_BASE 3000
53
54 #define IOCTL_INTERNAL_KEYBOARD_CONNECT \
55 CTL_CODE(FILE_DEVICE_KEYBOARD, 0x0080, METHOD_NEITHER, FILE_ANY_ACCESS)
56
57 #define IOCTL_INTERNAL_KEYBOARD_DISCONNECT \
58 CTL_CODE(FILE_DEVICE_KEYBOARD,0x0100, METHOD_NEITHER, FILE_ANY_ACCESS)
59
60 #define IOCTL_INTERNAL_KEYBOARD_ENABLE \
61 CTL_CODE(FILE_DEVICE_KEYBOARD, 0x0200, METHOD_NEITHER, FILE_ANY_ACCESS)
62
63 #define IOCTL_INTERNAL_KEYBOARD_DISABLE \
64 CTL_CODE(FILE_DEVICE_KEYBOARD, 0x0400, METHOD_NEITHER, FILE_ANY_ACCESS)
65
66 #define IOCTL_INTERNAL_MOUSE_CONNECT \
67 CTL_CODE(FILE_DEVICE_MOUSE, 0x0080, METHOD_NEITHER, FILE_ANY_ACCESS)
68
69 #define IOCTL_INTERNAL_MOUSE_DISCONNECT \
70 CTL_CODE(FILE_DEVICE_MOUSE, 0x0100, METHOD_NEITHER, FILE_ANY_ACCESS)
71
72 #define IOCTL_INTERNAL_MOUSE_ENABLE \
73 CTL_CODE(FILE_DEVICE_MOUSE, 0x0200, METHOD_NEITHER, FILE_ANY_ACCESS)
74
75 #define IOCTL_INTERNAL_MOUSE_DISABLE \
76 CTL_CODE(FILE_DEVICE_MOUSE, 0x0400, METHOD_NEITHER, FILE_ANY_ACCESS)
77
78 typedef struct _CONNECT_DATA {
79 PDEVICE_OBJECT ClassDeviceObject;
80 PVOID ClassService;
81 } CONNECT_DATA, *PCONNECT_DATA;
82
83 typedef VOID
84 (STDAPICALLTYPE *PSERVICE_CALLBACK_ROUTINE)(
85 IN PVOID NormalContext,
86 IN PVOID SystemArgument1,
87 IN PVOID SystemArgument2,
88 IN OUT PVOID SystemArgument3);
89
90 #include <wmidata.h>