reactos/subsystems/win32/win32k/include/accelerator.h
Jérôme Gardou c16ad873a6 sync with trunk (r46275)
svn path=/branches/reactos-yarotows/; revision=46279
2010-03-19 21:09:21 +00:00

21 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);