2002-03-09 23:29:33 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) the Wine project
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-03-09 23:29:33 +00:00
|
|
|
*/
|
|
|
|
|
Release 960606
Wed Jun 5 20:13:54 1996 Alexandre Julliard <julliard@lrc.epfl.ch>
* [controls/button.c] [controls/listbox.c]
Fixed wParam of WM_DRAWITEM message.
* [if1632/Makefile.in] [loader/builtin.c]
Remove WPROCS32 DLL, as the relay code can call Wine routines
directly.
* [loader/module.c] [loader/ne_image.c]
Fixed initial stack layout for self-loading modules.
* [tools/build.c]
Fixed data segment building for Win16 modules.
* [windows/defdlg.c]
Implemented Win32 versions of DefDlgProc().
* [windows/dialog.c]
Merged Win16 and Win32 dialog code.
Added support for control extra data in dialog item template.
* [windows/win.c]
Unified Win16 and Win32 versions of CreateWindow().
Implemented Win32 version of GetWindowLong().
* [windows/winproc.c]
Changed the implementation of window procedures, so that 16-bit
winprocs are valid segmented pointers.
Sun Jun 2 16:39:46 1996 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [misc/registry.c]
Fixed another bug in the w95 loader. Quietened some debug output.
Sun Jun 2 10:00:22 1996 Ulrich Schmid <uschmid@mail.hh.provi.de>
* [windows/winproc.c]
Bug fix: WM_PARENTNOTIFY: don't fall through to WM_SETTEXT.
Sat Jun 1 12:37:22 1996 Tristan Tarrant <tst@sthinc.demon.co.uk>
* [resources/TODO] [resources/sysres_It.rc]
Updated font dialog box.
Thu May 30 21:05:19 1996 Albrecht Kleine <kleine@ak.sax.de>
* [include/commdlg.h] [misc/commdlg.c]
ChooseFont() and ChooseColor():
Bugfixes and added more support for some CF_* and CC_* flags:
dialog templates and font size control.
Bugfix in structure definition of CHOOSECOLOR definition.
* [ipc/dde_proc.c] [windows/event.c]
Replaced SendMessage with SendMessage16 and added inclusion of
dde_proc.h for error-free compilation of ipc module.
Thu May 30 19:00:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu>
* [windows/scroll.c]
Made ScrollDC to save/restore current clipping region.
* [misc/clipboard.c] [windows/event.c]
Implemented most of the previously missing features (not tested),
improved text pasting from/to X.
* [if1632/user.spec] [if1632/gdi.spec] [objects/dc.c]
[objects/gdiobj.c] [objects/clipping.c] [windows/dce.c]
[windows/winpos.c] [windows/painting.c]
Updated DCE code, implemented dynamic invalidation of owned DCs.
This fixes a lot of problems with scrolling in WinWord. Not
sure about the effect on -desktop.
Wed May 29 23:35:44 1996 Jukka Iivonen <iivonen@cc.helsinki.fi>
* [win32/time.c] [if1632/kernel32.spec]
Added SetSystemTime and SetTimeZoneInformation.
* [if1632/kernel32.spec]
Added lstrcat, lstrcatA, lstrcmp, lstrcmpA, lstrcpy, lstrlen.
* [include/windows.h]
Added SYSTEM_POWER_STATUS structure and prototypes for
GetSystemPowerStatus, SetSystemPowerState, SetSystemTime.
* [include/kernel32.h]
Added a prototype for SetTimeZoneInformation.
* [win32/environment.c] [if1632/kernel32.spec]
Added GetSystemPowerStatus and SetSystemPowerState stubs.
1996-06-06 18:38:27 +00:00
|
|
|
#ifndef __WINE_WINDOWS_H
|
|
|
|
#define __WINE_WINDOWS_H
|
|
|
|
|
2002-10-23 20:16:23 +00:00
|
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 800) && !defined(__cplusplus)
|
|
|
|
/* TYPE_ALIGNMENT generates this - move it outside the warning push/pop scope. */
|
|
|
|
# pragma warning(disable:4116)
|
|
|
|
#endif
|
|
|
|
|
2006-09-12 10:50:13 +00:00
|
|
|
#ifndef _INC_WINDOWS
|
|
|
|
#define _INC_WINDOWS
|
|
|
|
|
2001-05-07 18:18:33 +00:00
|
|
|
#if defined(RC_INVOKED) && !defined(NOWINRES)
|
2003-08-28 21:43:34 +00:00
|
|
|
#include <winresrc.h>
|
2001-05-07 18:18:33 +00:00
|
|
|
#else /* RC_INVOKED && !NOWINRES */
|
|
|
|
|
2000-10-13 23:13:01 +00:00
|
|
|
/* All the basic includes */
|
2003-08-28 21:43:34 +00:00
|
|
|
#include <excpt.h>
|
2022-11-07 03:20:03 +00:00
|
|
|
#include <sdkddkver.h>
|
2003-09-05 23:08:26 +00:00
|
|
|
#include <stdarg.h>
|
2003-08-28 21:43:34 +00:00
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <wingdi.h>
|
|
|
|
#include <winuser.h>
|
|
|
|
#include <winnls.h>
|
|
|
|
#include <wincon.h>
|
|
|
|
#include <winver.h>
|
|
|
|
#include <winreg.h>
|
|
|
|
#include <winnetwk.h>
|
2000-10-13 23:13:01 +00:00
|
|
|
|
|
|
|
/* Not so essential ones */
|
2012-01-20 14:14:31 +00:00
|
|
|
#ifndef __WINESRC__
|
|
|
|
|
2000-10-13 23:13:01 +00:00
|
|
|
#ifndef WIN32_LEAN_AND_MEAN
|
|
|
|
|
2003-08-28 21:43:34 +00:00
|
|
|
#include <cderr.h>
|
|
|
|
#include <dde.h>
|
|
|
|
#include <ddeml.h>
|
|
|
|
#include <dlgs.h>
|
|
|
|
#include <lzexpand.h>
|
|
|
|
#include <mmsystem.h>
|
|
|
|
#include <nb30.h>
|
|
|
|
#include <rpc.h>
|
|
|
|
#include <shellapi.h>
|
2011-12-15 09:09:39 +00:00
|
|
|
#include <winperf.h>
|
2011-05-19 12:10:09 +00:00
|
|
|
#include <winsock.h>
|
2000-10-13 23:13:01 +00:00
|
|
|
|
|
|
|
#ifndef NOCRYPT
|
2003-08-28 21:43:34 +00:00
|
|
|
#include <wincrypt.h>
|
|
|
|
/* #include <winefs.h> */
|
2011-12-15 09:09:39 +00:00
|
|
|
#include <winscard.h>
|
2000-10-13 23:13:01 +00:00
|
|
|
#endif /* !NOCRYPT */
|
|
|
|
|
|
|
|
#ifndef NOGDI
|
2003-08-28 21:43:34 +00:00
|
|
|
#include <winspool.h>
|
2000-10-13 23:13:01 +00:00
|
|
|
#ifdef INC_OLE1
|
2003-08-28 21:43:34 +00:00
|
|
|
/* #include <ole.h> */
|
2000-10-13 23:13:01 +00:00
|
|
|
#else
|
2003-08-28 21:43:34 +00:00
|
|
|
#include <ole2.h>
|
2000-10-13 23:13:01 +00:00
|
|
|
#endif
|
2003-08-28 21:43:34 +00:00
|
|
|
#include <commdlg.h>
|
2000-10-13 23:13:01 +00:00
|
|
|
#endif /* !NOGDI */
|
|
|
|
|
|
|
|
#endif /* !WIN32_LEAN_AND_MEAN */
|
|
|
|
|
2003-08-28 21:43:34 +00:00
|
|
|
/* #include <stralign.h> */
|
2002-12-13 00:32:56 +00:00
|
|
|
|
2000-10-13 23:13:01 +00:00
|
|
|
#ifdef INC_OLE2
|
2003-08-28 21:43:34 +00:00
|
|
|
#include <ole2.h>
|
2000-10-13 23:13:01 +00:00
|
|
|
#endif /* INC_OLE2 */
|
|
|
|
|
|
|
|
#ifndef NOSERVICE
|
2003-08-28 21:43:34 +00:00
|
|
|
#include <winsvc.h>
|
2000-10-13 23:13:01 +00:00
|
|
|
#endif /* !NOSERVICE */
|
|
|
|
|
|
|
|
#ifndef NOMCX
|
2003-08-28 21:43:34 +00:00
|
|
|
#include <mcx.h>
|
2000-10-13 23:13:01 +00:00
|
|
|
#endif /* !NOMCX */
|
|
|
|
|
|
|
|
#ifndef NOIMM
|
2003-08-28 21:43:34 +00:00
|
|
|
#include <imm.h>
|
2000-10-13 23:13:01 +00:00
|
|
|
#endif /* !NOIMM */
|
|
|
|
|
2012-01-20 14:14:31 +00:00
|
|
|
#endif /* __WINESRC__ */
|
|
|
|
|
2001-05-07 18:18:33 +00:00
|
|
|
#endif /* RC_INVOKED && !NOWINRES */
|
2006-09-12 10:50:13 +00:00
|
|
|
#endif /* _INC_WINDOWS */
|
Release 960606
Wed Jun 5 20:13:54 1996 Alexandre Julliard <julliard@lrc.epfl.ch>
* [controls/button.c] [controls/listbox.c]
Fixed wParam of WM_DRAWITEM message.
* [if1632/Makefile.in] [loader/builtin.c]
Remove WPROCS32 DLL, as the relay code can call Wine routines
directly.
* [loader/module.c] [loader/ne_image.c]
Fixed initial stack layout for self-loading modules.
* [tools/build.c]
Fixed data segment building for Win16 modules.
* [windows/defdlg.c]
Implemented Win32 versions of DefDlgProc().
* [windows/dialog.c]
Merged Win16 and Win32 dialog code.
Added support for control extra data in dialog item template.
* [windows/win.c]
Unified Win16 and Win32 versions of CreateWindow().
Implemented Win32 version of GetWindowLong().
* [windows/winproc.c]
Changed the implementation of window procedures, so that 16-bit
winprocs are valid segmented pointers.
Sun Jun 2 16:39:46 1996 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de>
* [misc/registry.c]
Fixed another bug in the w95 loader. Quietened some debug output.
Sun Jun 2 10:00:22 1996 Ulrich Schmid <uschmid@mail.hh.provi.de>
* [windows/winproc.c]
Bug fix: WM_PARENTNOTIFY: don't fall through to WM_SETTEXT.
Sat Jun 1 12:37:22 1996 Tristan Tarrant <tst@sthinc.demon.co.uk>
* [resources/TODO] [resources/sysres_It.rc]
Updated font dialog box.
Thu May 30 21:05:19 1996 Albrecht Kleine <kleine@ak.sax.de>
* [include/commdlg.h] [misc/commdlg.c]
ChooseFont() and ChooseColor():
Bugfixes and added more support for some CF_* and CC_* flags:
dialog templates and font size control.
Bugfix in structure definition of CHOOSECOLOR definition.
* [ipc/dde_proc.c] [windows/event.c]
Replaced SendMessage with SendMessage16 and added inclusion of
dde_proc.h for error-free compilation of ipc module.
Thu May 30 19:00:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu>
* [windows/scroll.c]
Made ScrollDC to save/restore current clipping region.
* [misc/clipboard.c] [windows/event.c]
Implemented most of the previously missing features (not tested),
improved text pasting from/to X.
* [if1632/user.spec] [if1632/gdi.spec] [objects/dc.c]
[objects/gdiobj.c] [objects/clipping.c] [windows/dce.c]
[windows/winpos.c] [windows/painting.c]
Updated DCE code, implemented dynamic invalidation of owned DCs.
This fixes a lot of problems with scrolling in WinWord. Not
sure about the effect on -desktop.
Wed May 29 23:35:44 1996 Jukka Iivonen <iivonen@cc.helsinki.fi>
* [win32/time.c] [if1632/kernel32.spec]
Added SetSystemTime and SetTimeZoneInformation.
* [if1632/kernel32.spec]
Added lstrcat, lstrcatA, lstrcmp, lstrcmpA, lstrcpy, lstrlen.
* [include/windows.h]
Added SYSTEM_POWER_STATUS structure and prototypes for
GetSystemPowerStatus, SetSystemPowerState, SetSystemTime.
* [include/kernel32.h]
Added a prototype for SetTimeZoneInformation.
* [win32/environment.c] [if1632/kernel32.spec]
Added GetSystemPowerStatus and SetSystemPowerState stubs.
1996-06-06 18:38:27 +00:00
|
|
|
#endif /* __WINE_WINDOWS_H */
|