mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 16:48:16 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
20 lines
371 B
C
20 lines
371 B
C
#pragma once
|
|
|
|
#include <include/win32.h>
|
|
#include <include/winsta.h>
|
|
#include <include/window.h>
|
|
|
|
typedef struct _ACCELERATOR_TABLE
|
|
{
|
|
HEAD head;
|
|
int Count;
|
|
LPACCEL Table;
|
|
} ACCELERATOR_TABLE, *PACCELERATOR_TABLE;
|
|
|
|
NTSTATUS FASTCALL
|
|
InitAcceleratorImpl(VOID);
|
|
|
|
NTSTATUS FASTCALL
|
|
CleanupAcceleratorImpl(VOID);
|
|
|
|
PACCELERATOR_TABLE FASTCALL UserGetAccelObject(HACCEL);
|