mirror of
https://github.com/reactos/wine.git
synced 2025-02-16 19:10:35 +00:00
![Alexandre Julliard](/assets/img/avatar_default.png)
Sun Aug 11 13:00:20 1996 Alexandre Julliard <julliard@lrc.epfl.ch> * [configure.in] [include/acconfig.h] [tools/build.c] Added check for underscore on external symbols. * [memory/selector.c] [memory/global.c] Fixed FreeSelector() to free only one selector. Added SELECTOR_FreeBlock() to free an array of selectors. * [objects/color.c] Fixed a bug in COLOR_ToLogical() that caused GetPixel() to fail on hi-color displays. * [tools/build.c] [if1632/crtdll.spec] Added 'extern' type, used for external variables or functions. * [windows/winpos.c] Allow de-activating a window in WINPOS_ChangeActiveWindow(). * [windows/winproc.c] Added 32-to-16 translation for button messages. Fixed WINPROC_GetPtr() to avoid crashes on 32-bit procedures that happen to be valid SEGPTRs. Sat Aug 10 18:22:25 1996 Albrecht Kleine <kleine@ak.sax.de> * [windows/message.c] Removed a FIXME in MSG_PeekHardwareMsg(): produces correct data for the JOURNALRECORD-hook (using EVENTMSG16 structure). * [if1632/gdi.spec] [include/windows.h] [objects/metafile.c] Introduced undocumented API function IsValidMetaFile(), plus a minor fix in last patch of CopyMetaFile(). * [objects/gdiobj.c] Removed a FIXME in IsGDIObject(): added magic word check. Sun Aug 10 18:10:10 1996 Bruce Milner <Bruce.Milner@genetics.utah.edu> * [controls/statuswin.c] First pass at implementing the StatusWindow class. * [include/commctrl.h] Header file for common controls. * [controls/widgets.c] Added InitCommonControls(). * [if1632/comctl32.spec] Add DrawStatusTextA, CreateStatusWindowA, InitCommonControls. * [win32/findfile.c] [if1632/kernel32.spec] Add FindNextFile32A, FindClose. Modified FindFirstFile32A so it works with FindNextFile32A. * [include/winbase.h] Fixed WIN32_FIND_DATA structure member names. Sat Aug 10 09:00:00 1996 Alex Korobka <alex@phm30.pharm.sunysb.edu> * [windows/scroll.c] Changed scrolling routines to benefit from DCE code update. Thu Aug 8 18:05:09 1996 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [files/file.c] SearchPath* could get NULL for lastpart argument. * [if1632/build-spec.txt] [documentation/debugging] Varargs documentation added, debugging hints updated. * [if1632/crtdll.spec][misc/crtdll.c][misc/Makefile.in] Started to implement CRTDLL. * [if1632/wsock32.spec] Some thunks to standard libc functions (structures have the same elements, but perhaps wrong offset due to packing). * [include/kernel32.h][include/windows.h][win32/*.c][loader/main.c] Merged kernel32.h into windows.h. * [misc/lstr.c] Enhanced FormatMessage(). * [misc/main.c] [if1632/kernel.spec] [include/windows.h] GetVersion() updated to new naming standard. Changed language handling to support language ids. * [misc/shell.c] Enhanced FindExecutable, so it finds files in the search path too. * [win32/environment.c] GetCommandLine* updated. * [loader/resource.c] [loader/pe_resource.c] FindResourceEx32* added. Loading of messagetables added. Language handling now uses Wine default language id.
233 lines
5.4 KiB
C
233 lines
5.4 KiB
C
/* If you define this you can enable or disable specific debugging- */
|
|
/* messages at run-time by supplying the "-debugmsg" option to Wine */
|
|
#define DEBUG_RUNTIME /* */
|
|
|
|
|
|
/* Define this if you want to enable all debugging-messages, except */
|
|
/* the ones explicitly disabled in a specific *.c-file. */
|
|
/* #define DEBUG_ALL */
|
|
|
|
/* Define this if you want to enable all debugging-messages, even */
|
|
/* the ones explicitly disabled in specific *.c-files. */
|
|
/* #define DEBUG_ALL_EXT */
|
|
|
|
/* Define this if you want to disable all debugging-messages, except */
|
|
/* the ones explicitly enabled in a specifiy *.c-file. */
|
|
/* #define DEBUG_NONE */
|
|
|
|
/* Define this if you want to disable all debugging-messages, even */
|
|
/* the ones explicitly enabled in specific *.c-files. */
|
|
/* #define DEBUG_NONE_EXT */
|
|
|
|
|
|
/* You can enable or disable specific debugging-messages here. */
|
|
/* However, this can be overridden in the individual *.c-files */
|
|
/* between #include <stddebug.h> and #include <debug.h> */
|
|
|
|
|
|
/* #define DEBUG_EDIT */
|
|
/* #define DEBUG_MENU */
|
|
/* #define DEBUG_MENUCALC */
|
|
/* #define DEBUG_SCROLL */
|
|
/* #define DEBUG_COMBO */
|
|
/* #define DEBUG_LISTBOX */
|
|
/* #define DEBUG_TASK */
|
|
/* #define DEBUG_SELECTORS */
|
|
/* #define DEBUG_RESOURCE */
|
|
/* #define DEBUG_ACCEL */
|
|
/* #define DEBUG_FIXUP */
|
|
/* #define DEBUG_MODULE */
|
|
/* #define DEBUG_LDT */
|
|
/* #define DEBUG_HEAP */
|
|
/* #define DEBUG_MCIANIM */
|
|
/* #define DEBUG_MCIWAVE */
|
|
/* #define DEBUG_MIDI */
|
|
/* #define DEBUG_INT */
|
|
/* #define DEBUG_METAFILE */
|
|
/* #define DEBUG_GDI */
|
|
/* #define DEBUG_BITMAP */
|
|
/* #define DEBUG_FONT */
|
|
/* #define DEBUG_PALETTE */
|
|
/* #define DEBUG_ICON */
|
|
/* #define DEBUG_REGION */
|
|
/* #define DEBUG_TEXT */
|
|
/* #define DEBUG_CLIPPING */
|
|
/* #define DEBUG_CARET */
|
|
/* #define DEBUG_CLASS */
|
|
/* #define DEBUG_DC */
|
|
/* #define DEBUG_DIALOG */
|
|
/* #define DEBUG_MESSAGE */
|
|
/* #define DEBUG_EVENT */
|
|
/* #define DEBUG_KEY */
|
|
/* #define DEBUG_GRAPHICS */
|
|
/* #define DEBUG_MDI */
|
|
/* #define DEBUG_MSG */
|
|
/* #define DEBUG_NONCLIENT */
|
|
/* #define DEBUG_SYSCOLOR */
|
|
/* #define DEBUG_TIMER */
|
|
/* #define DEBUG_UTILITY */
|
|
/* #define DEBUG_WIN */
|
|
/* #define DEBUG_ENUM */
|
|
/* #define DEBUG_DLL */
|
|
/* #define DEBUG_MSGBOX */
|
|
/* #define DEBUG_CATCH */
|
|
|
|
|
|
/* Do not remove this line or change anything below this line */
|
|
|
|
#ifdef DEBUG_NONE
|
|
#undef DEBUG_ACCEL
|
|
#undef DEBUG_ATOM
|
|
#undef DEBUG_BITBLT
|
|
#undef DEBUG_BITMAP
|
|
#undef DEBUG_CARET
|
|
#undef DEBUG_CDAUDIO
|
|
#undef DEBUG_CLASS
|
|
#undef DEBUG_CLIPBOARD
|
|
#undef DEBUG_CLIPPING
|
|
#undef DEBUG_COMBO
|
|
#undef DEBUG_COMM
|
|
#undef DEBUG_COMMDLG
|
|
#undef DEBUG_CRTDLL
|
|
#undef DEBUG_CURSOR
|
|
#undef DEBUG_DC
|
|
#undef DEBUG_DDE
|
|
#undef DEBUG_DIALOG
|
|
#undef DEBUG_DLL
|
|
#undef DEBUG_DOSFS
|
|
#undef DEBUG_DRIVER
|
|
#undef DEBUG_EDIT
|
|
#undef DEBUG_ENV
|
|
#undef DEBUG_EVENT
|
|
#undef DEBUG_EXEC
|
|
#undef DEBUG_FILE
|
|
#undef DEBUG_FIXUP
|
|
#undef DEBUG_FONT
|
|
#undef DEBUG_GDI
|
|
#undef DEBUG_GLOBAL
|
|
#undef DEBUG_GRAPHICS
|
|
#undef DEBUG_HEAP
|
|
#undef DEBUG_HOOK
|
|
#undef DEBUG_ICON
|
|
#undef DEBUG_INT
|
|
#undef DEBUG_KEY
|
|
#undef DEBUG_KEYBOARD
|
|
#undef DEBUG_LDT
|
|
#undef DEBUG_LISTBOX
|
|
#undef DEBUG_LOCAL
|
|
#undef DEBUG_MCI
|
|
#undef DEBUG_MCIANIM
|
|
#undef DEBUG_MCIWAVE
|
|
#undef DEBUG_MDI
|
|
#undef DEBUG_MENU
|
|
#undef DEBUG_MESSAGE
|
|
#undef DEBUG_METAFILE
|
|
#undef DEBUG_MIDI
|
|
#undef DEBUG_MMIO
|
|
#undef DEBUG_MMSYS
|
|
#undef DEBUG_MMTIME
|
|
#undef DEBUG_MODULE
|
|
#undef DEBUG_MSG
|
|
#undef DEBUG_NONCLIENT
|
|
#undef DEBUG_OLE
|
|
#undef DEBUG_PALETTE
|
|
#undef DEBUG_PROFILE
|
|
#undef DEBUG_PROP
|
|
#undef DEBUG_REG
|
|
#undef DEBUG_REGION
|
|
#undef DEBUG_RELAY
|
|
#undef DEBUG_RESOURCE
|
|
#undef DEBUG_SCROLL
|
|
#undef DEBUG_SELECTOR
|
|
#undef DEBUG_SEM
|
|
#undef DEBUG_SHM
|
|
#undef DEBUG_STRESS
|
|
#undef DEBUG_SYSCOLOR
|
|
#undef DEBUG_TASK
|
|
#undef DEBUG_TEXT
|
|
#undef DEBUG_TIMER
|
|
#undef DEBUG_TOOLHELP
|
|
#undef DEBUG_VXD
|
|
#undef DEBUG_WIN
|
|
#undef DEBUG_WIN32
|
|
#undef DEBUG_WINSOCK
|
|
#endif
|
|
|
|
#ifdef DEBUG_ALL
|
|
#define DEBUG_ACCEL
|
|
#define DEBUG_ATOM
|
|
#define DEBUG_BITBLT
|
|
#define DEBUG_BITMAP
|
|
#define DEBUG_CARET
|
|
#define DEBUG_CDAUDIO
|
|
#define DEBUG_CLASS
|
|
#define DEBUG_CLIPBOARD
|
|
#define DEBUG_CLIPPING
|
|
#define DEBUG_COMBO
|
|
#define DEBUG_COMM
|
|
#define DEBUG_COMMDLG
|
|
#define DEBUG_CRTDLL
|
|
#define DEBUG_CURSOR
|
|
#define DEBUG_DC
|
|
#define DEBUG_DDE
|
|
#define DEBUG_DIALOG
|
|
#define DEBUG_DLL
|
|
#define DEBUG_DOSFS
|
|
#define DEBUG_DRIVER
|
|
#define DEBUG_EDIT
|
|
#define DEBUG_ENV
|
|
#define DEBUG_EVENT
|
|
#define DEBUG_EXEC
|
|
#define DEBUG_FILE
|
|
#define DEBUG_FIXUP
|
|
#define DEBUG_FONT
|
|
#define DEBUG_GDI
|
|
#define DEBUG_GLOBAL
|
|
#define DEBUG_GRAPHICS
|
|
#define DEBUG_HEAP
|
|
#define DEBUG_HOOK
|
|
#define DEBUG_ICON
|
|
#define DEBUG_INT
|
|
#define DEBUG_KEY
|
|
#define DEBUG_KEYBOARD
|
|
#define DEBUG_LDT
|
|
#define DEBUG_LISTBOX
|
|
#define DEBUG_LOCAL
|
|
#define DEBUG_MCI
|
|
#define DEBUG_MCIANIM
|
|
#define DEBUG_MCIWAVE
|
|
#define DEBUG_MDI
|
|
#define DEBUG_MENU
|
|
#define DEBUG_MESSAGE
|
|
#define DEBUG_METAFILE
|
|
#define DEBUG_MIDI
|
|
#define DEBUG_MMIO
|
|
#define DEBUG_MMSYS
|
|
#define DEBUG_MMTIME
|
|
#define DEBUG_MODULE
|
|
#define DEBUG_MSG
|
|
#define DEBUG_NONCLIENT
|
|
#define DEBUG_OLE
|
|
#define DEBUG_PALETTE
|
|
#define DEBUG_PROFILE
|
|
#define DEBUG_PROP
|
|
#define DEBUG_REG
|
|
#define DEBUG_REGION
|
|
#define DEBUG_RELAY
|
|
#define DEBUG_RESOURCE
|
|
#define DEBUG_SCROLL
|
|
#define DEBUG_SELECTOR
|
|
#define DEBUG_SEM
|
|
#define DEBUG_SHM
|
|
#define DEBUG_STRESS
|
|
#define DEBUG_SYSCOLOR
|
|
#define DEBUG_TASK
|
|
#define DEBUG_TEXT
|
|
#define DEBUG_TIMER
|
|
#define DEBUG_TOOLHELP
|
|
#define DEBUG_VXD
|
|
#define DEBUG_WIN
|
|
#define DEBUG_WIN32
|
|
#define DEBUG_WINSOCK
|
|
#endif
|