mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Forgot this file (fixes all the builds).
svn path=/trunk/; revision=59712
This commit is contained in:
parent
38c812cfc9
commit
c746456035
1 changed files with 9 additions and 1 deletions
|
@ -65,7 +65,7 @@ typedef enum _CONSRV_API_NUMBER
|
|||
ConsolepSetCursor,
|
||||
ConsolepShowCursor,
|
||||
ConsolepMenuControl,
|
||||
// ConsolepSetPalette,
|
||||
ConsolepSetPalette,
|
||||
ConsolepSetDisplayMode,
|
||||
// ConsolepRegisterVDM,
|
||||
ConsolepGetHardwareState,
|
||||
|
@ -303,6 +303,13 @@ typedef struct
|
|||
SMALL_RECT Region;
|
||||
} CONSOLE_INVALIDATEDIBITS, *PCONSOLE_INVALIDATEDIBITS;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
HANDLE OutputHandle;
|
||||
HPALETTE PaletteHandle;
|
||||
UINT Usage;
|
||||
} CONSOLE_SETPALETTE, *PCONSOLE_SETPALETTE;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
DWORD Length;
|
||||
|
@ -664,6 +671,7 @@ typedef struct _CONSOLE_API_MESSAGE
|
|||
|
||||
/* Console window */
|
||||
CONSOLE_INVALIDATEDIBITS InvalidateDIBitsRequest;
|
||||
CONSOLE_SETPALETTE SetPaletteRequest;
|
||||
CONSOLE_GETSETCONSOLETITLE TitleRequest;
|
||||
CONSOLE_GETLARGESTWINDOWSIZE GetLargestWindowSizeRequest;
|
||||
CONSOLE_MENUCONTROL MenuControlRequest;
|
||||
|
|
Loading…
Reference in a new issue