Skip to content

Commit 69a12fc

Browse files
committed
Add missing structures
svn path=/trunk/; revision=27605
1 parent 4cfa3cd commit 69a12fc

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

reactos/include/psdk/shlobj.h

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1032,6 +1032,35 @@ typedef struct tagDATABLOCKHEADER
10321032
DWORD dwSignature;
10331033
} DATABLOCK_HEADER, *LPDATABLOCK_HEADER, *LPDBLIST;
10341034

1035+
typedef struct {
1036+
DATABLOCK_HEADER dbh;
1037+
WORD wFillAttribute;
1038+
WORD wPopupFillAttribute;
1039+
COORD dwScreenBufferSize;
1040+
COORD dwWindowSize;
1041+
COORD dwWindowOrigin;
1042+
DWORD nFont;
1043+
DWORD nInputBufferSize;
1044+
COORD dwFontSize;
1045+
UINT uFontFamily;
1046+
UINT uFontWeight;
1047+
WCHAR FaceName[LF_FACESIZE];
1048+
UINT uCursorSize;
1049+
BOOL bFullScreen;
1050+
BOOL bQuickEdit;
1051+
BOOL bInsertMode;
1052+
BOOL bAutoPosition;
1053+
UINT uHistoryBufferSize;
1054+
UINT uNumberOfHistoryBuffers;
1055+
BOOL bHistoryNoDup;
1056+
COLORREF ColorTable[16];
1057+
} NT_CONSOLE_PROPS, *LPNT_CONSOLE_PROPS;
1058+
1059+
typedef struct {
1060+
DATABLOCK_HEADER dbh;
1061+
UINT uCodePage;
1062+
} NT_FE_CONSOLE_PROPS, *LPNT_FE_CONSOLE_PROPS;
1063+
10351064
typedef struct {
10361065
DATABLOCK_HEADER dbh;
10371066
CHAR szDarwinID[MAX_PATH];

0 commit comments

Comments
 (0)