Author: jgardou Date: Sun Sep 4 14:09:14 2011 New Revision: 53578
URL: http://svn.reactos.org/svn/reactos?rev=53578&view=rev Log: [PSDK] - put NOGDI guard at the right place...
Modified: trunk/reactos/include/psdk/wincon.h
Modified: trunk/reactos/include/psdk/wincon.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/psdk/wincon.h?rev=5... ============================================================================== --- trunk/reactos/include/psdk/wincon.h [iso-8859-1] (original) +++ trunk/reactos/include/psdk/wincon.h [iso-8859-1] Sun Sep 4 14:09:14 2011 @@ -141,14 +141,13 @@ #if (_WIN32_WINNT >= 0x0600) #define HISTORY_NO_DUP_FLAG 0x1 #define CONSOLE_OVERSTRIKE 0x1 -#ifndef NOGDI + typedef struct _CONSOLE_HISTORY_INFO { UINT cbSize; UINT HistoryBufferSize; UINT NumberOfHistoryBuffers; DWORD dwFlags; } CONSOLE_HISTORY_INFO, *PCONSOLE_HISTORY_INFO; -#endif
typedef struct _CONSOLE_SCREEN_BUFFER_INFOEX { ULONG cbSize; @@ -161,6 +160,7 @@ COLORREF ColorTable[16]; } CONSOLE_SCREEN_BUFFER_INFOEX, *PCONSOLE_SCREEN_BUFFER_INFOEX;
+#ifndef NOGDI typedef struct _CONSOLE_FONT_INFOEX { ULONG cbSize; DWORD nFont; @@ -169,6 +169,7 @@ UINT FontWeight; WCHAR FaceName[LF_FACESIZE]; } CONSOLE_FONT_INFOEX, *PCONSOLE_FONT_INFOEX; +#endif #endif
BOOL WINAPI AllocConsole(void);