mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
c16ad873a6
svn path=/branches/reactos-yarotows/; revision=46279
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);
|