Release 961013 Sun Oct 13 15:32:32 1996 Alexandre Julliard <julliard@lrc.epfl.ch> * [Make.rules.in] [*/Makefile.in] Made it possible to compile from a directory other than the source directory. * [graphics/metafiledrv/init.c] [include/metafiledrv.h] [objects/metafile.c] [objects/dc.c] New graphics driver for metafiles. * [if1632/thunk.c] Added thunks for SetWindowsHook and SetDCHook. * [windows/dialog.c] Fixed GetNextDlgGroupItem and GetNextDlgTabItem to skip disabled items. * [*/*] Removed non Win32-clean types HANDLE, HBITMAP, HBRUSH, HFONT, HINSTANCE, HMENU, HRGN and HTASK. Wed Oct 9 14:59:45 1996 Frans van Dorsselaer <dorssel@rulhm1.LeidenUniv.nl> * [controls/edit.c] Fixed EditWndProc() to fall back to DefWndProc() when the edit state structure is not available. Wed Oct 2 14:00:34 1996 Huw D. M. Davies <h.davies1@physics.oxford.ac.uk> * [windows/nonclient.c] [windows/mdi.c] AdjustWindowRectEx16() should only take notice of the styles WS_DLGFRAME, WS_BORDER, WS_THICKFRAME and WS_EX_DLGMODALFRAME. Thanks to Alex Korobka. * [controls/scroll.c] Fixed typo in ShowScrollBar32(). Sun Aug 25 20:18:56 1996 Jukka Iivonen <iivonen@cc.helsinki.fi> * [if1632/user32.spec] [if1632/winmm.spec] Added SetParent and sndPlaySoundA.
diff --git a/include/commdlg.h b/include/commdlg.h index 83f794e..b3d3293 100644 --- a/include/commdlg.h +++ b/include/commdlg.h
@@ -50,7 +50,7 @@ typedef struct { DWORD lStructSize; HWND hwndOwner; - HINSTANCE hInstance; + HINSTANCE16 hInstance; SEGPTR lpstrFilter; SEGPTR lpstrCustomFilter; DWORD nMaxCustFilter; @@ -96,7 +96,7 @@ typedef struct { DWORD lStructSize; /* size of this struct 0x20 */ HWND hwndOwner; /* handle to owner's window */ - HINSTANCE hInstance; /* instance handle of.EXE that */ + HINSTANCE16 hInstance; /* instance handle of.EXE that */ /* contains cust. dlg. template */ DWORD Flags; /* one or more of the FR_?? */ SEGPTR lpstrFindWhat; /* ptr. to search string */ @@ -141,7 +141,7 @@ LPARAM lCustData; /* data passed to hook fn. */ WNDPROC16 lpfnHook; SEGPTR lpTemplateName; /* custom template name */ - HINSTANCE hInstance; /* instance handle of.EXE that */ + HINSTANCE16 hInstance; /* instance handle of.EXE that */ /* contains cust. dlg. template */ SEGPTR lpszStyle WINE_PACKED; /* return the style field here */ /* must be LF_FACESIZE or bigger */ @@ -215,7 +215,7 @@ UINT nMinPage; UINT nMaxPage; UINT nCopies; - HINSTANCE hInstance; + HINSTANCE16 hInstance; LPARAM lCustData; WNDPROC16 lpfnPrintHook; WNDPROC16 lpfnSetupHook;