From 0a0f71827a967f04434034a67e78b3c84c585c9f Mon Sep 17 00:00:00 2001 From: marco Date: Fri, 9 Feb 2007 20:24:56 +0000 Subject: [PATCH] * openfilename updated to NT5 struct, keeping the old struct with _NT4 suffix git-svn-id: trunk@6390 - --- rtl/win/wininc/struct.inc | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/rtl/win/wininc/struct.inc b/rtl/win/wininc/struct.inc index 6fc73cfec7..1831b5a296 100644 --- a/rtl/win/wininc/struct.inc +++ b/rtl/win/wininc/struct.inc @@ -4831,6 +4831,32 @@ TOFSTRUCT = OFSTRUCT; POFSTRUCT = ^OFSTRUCT; + OPENFILENAME_NT4 = record + lStructSize : DWORD; + hwndOwner : HWND; + hInstance : HINST; + lpstrFilter : LPCTSTR; + lpstrCustomFilter : LPTSTR; + nMaxCustFilter : DWORD; + nFilterIndex : DWORD; + lpstrFile : LPTSTR; + nMaxFile : DWORD; + lpstrFileTitle : LPTSTR; + nMaxFileTitle : DWORD; + lpstrInitialDir : LPCTSTR; + lpstrTitle : LPCTSTR; + Flags : DWORD; + nFileOffset : WORD; + nFileExtension : WORD; + lpstrDefExt : LPCTSTR; + lCustData : LPARAM; + lpfnHook : LPOFNHOOKPROC; + lpTemplateName : LPCTSTR; + end; + LPOPENFILENAME_NT4 = ^OPENFILENAME_NT4; + TOPENFILENAME_NT4 = OPENFILENAME_NT4; + POPENFILENAME_NT4 = ^OPENFILENAME_NT4; + OPENFILENAME = record lStructSize : DWORD; hwndOwner : HWND; @@ -4852,6 +4878,9 @@ lCustData : LPARAM; lpfnHook : LPOFNHOOKPROC; lpTemplateName : LPCTSTR; + pvReserved : pointer; + dwreserved : dword; + FlagsEx : dword; end; LPOPENFILENAME = ^OPENFILENAME; TOPENFILENAME = OPENFILENAME;