Sync to trunk (r47832)
[reactos.git] / subsystems / win32 / win32k / include / accelerator.h
1 #pragma once
2
3 #include <include/win32.h>
4 #include <include/winsta.h>
5 #include <include/window.h>
6
7 typedef struct _ACCELERATOR_TABLE
8 {
9 HEAD head;
10 int Count;
11 LPACCEL Table;
12 } ACCELERATOR_TABLE, *PACCELERATOR_TABLE;
13
14 NTSTATUS FASTCALL
15 InitAcceleratorImpl(VOID);
16
17 NTSTATUS FASTCALL
18 CleanupAcceleratorImpl(VOID);
19
20 PACCELERATOR_TABLE FASTCALL UserGetAccelObject(HACCEL);