Create a branch for network fixes.
[reactos.git] / subsystems / win32 / win32k / include / accelerator.h
1 #ifndef _WIN32K_ACCELERATOR_H
2 #define _WIN32K_ACCELERATOR_H
3
4 #include <include/win32.h>
5 #include <include/winsta.h>
6 #include <include/window.h>
7
8 typedef struct _ACCELERATOR_TABLE
9 {
10 int Count;
11 LPACCEL Table;
12 } ACCELERATOR_TABLE, *PACCELERATOR_TABLE;
13
14 NTSTATUS FASTCALL
15 InitAcceleratorImpl();
16
17 NTSTATUS FASTCALL
18 CleanupAcceleratorImpl();
19
20 PACCELERATOR_TABLE FASTCALL UserGetAccelObject(HACCEL);
21
22 #endif /* _WIN32K_ACCELERATOR_H */