mirror of
https://github.com/reactos/reactos.git
synced 2025-06-10 04:14:53 +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,
|
ConsolepSetCursor,
|
||||||
ConsolepShowCursor,
|
ConsolepShowCursor,
|
||||||
ConsolepMenuControl,
|
ConsolepMenuControl,
|
||||||
// ConsolepSetPalette,
|
ConsolepSetPalette,
|
||||||
ConsolepSetDisplayMode,
|
ConsolepSetDisplayMode,
|
||||||
// ConsolepRegisterVDM,
|
// ConsolepRegisterVDM,
|
||||||
ConsolepGetHardwareState,
|
ConsolepGetHardwareState,
|
||||||
|
@ -303,6 +303,13 @@ typedef struct
|
||||||
SMALL_RECT Region;
|
SMALL_RECT Region;
|
||||||
} CONSOLE_INVALIDATEDIBITS, *PCONSOLE_INVALIDATEDIBITS;
|
} CONSOLE_INVALIDATEDIBITS, *PCONSOLE_INVALIDATEDIBITS;
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
HANDLE OutputHandle;
|
||||||
|
HPALETTE PaletteHandle;
|
||||||
|
UINT Usage;
|
||||||
|
} CONSOLE_SETPALETTE, *PCONSOLE_SETPALETTE;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
DWORD Length;
|
DWORD Length;
|
||||||
|
@ -664,6 +671,7 @@ typedef struct _CONSOLE_API_MESSAGE
|
||||||
|
|
||||||
/* Console window */
|
/* Console window */
|
||||||
CONSOLE_INVALIDATEDIBITS InvalidateDIBitsRequest;
|
CONSOLE_INVALIDATEDIBITS InvalidateDIBitsRequest;
|
||||||
|
CONSOLE_SETPALETTE SetPaletteRequest;
|
||||||
CONSOLE_GETSETCONSOLETITLE TitleRequest;
|
CONSOLE_GETSETCONSOLETITLE TitleRequest;
|
||||||
CONSOLE_GETLARGESTWINDOWSIZE GetLargestWindowSizeRequest;
|
CONSOLE_GETLARGESTWINDOWSIZE GetLargestWindowSizeRequest;
|
||||||
CONSOLE_MENUCONTROL MenuControlRequest;
|
CONSOLE_MENUCONTROL MenuControlRequest;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue