mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
a0b2b1d0f6
Sun Nov 16 07:42:44 1997 Alex Korobka <alex@trantor.pharm.sunysb.edu> * [windows/dce.c] [windows/clipboard.c] [windows/nonclient.c] Bug fixes. * [misc/shell.c] [resources/*] New "About" dialog. Sat Nov 15 17:30:18 1997 Alexandre Julliard <julliard@lrc.epfl.ch> * [configure.in] [Makefile.in] Replaced --with-library option by --disable-emulator. The default is now to build both the library and the emulator. Renamed --with options to --enable to follow autoconf guidelines. * [loader/main.c] [miscemu/main.c] (New file) Split initialization in WinelibInit/EmulatorInit. * [loader/*.c] Removed all remaining #ifdef's WINELIB. * [controls/widgets.c] [windows/mdi.c] Converted MDIClientWndProc to 32-bit. * [debugger/break.c] [if1632/signal.c] [include/selectors.h] [scheduler/thread.c] Code and data selector values are now computed at run-time. * [library/libres.c] Moved to loader/ directory. * [misc/main.c] [misc/version.c] (New file) Moved all version stuff to version.c. Cleaned up a bit. * [msdos/dpmi.c] Update the REALMODECALL structure on return from real-mode interrupt. * [windows/event.c] [windows/keyboard.c] Changed the way event coordinates are determined. Don't rely on the ConfigureNotify event values. This should fix all problems with cursor position in -desktop and -managed modes. Sat Nov 15 16:09:36 1997 Slaven Rezic <eserte@cs.tu-berlin.de> * [controls/button.c] (BUTTON_CheckAutoRadioButton): Prevent possible endless loop. Wed Nov 12 03:42:45 1997 Chris Faherty <chrisf@america.com> * [misc/ver.c] Changed VerInstall32A to assume srcdir as destination if destdir is blank. This was causing alot of DLL installation into SYSTEM directory to fail. * [loader/ne_image.c] NE_LoadSegment buffer[100] was too small and getting overruns. Changed it to buffer[200]. Sat Nov 8 06:09:57 1997 Len White <phreak@cgocable.net> * [misc/ddeml.c] [include/ddeml.h] [if1632/ddeml.spec] Added stub functions DdeConnectList(), DdeQueryNextServer(), DdeDisconnectList(), DdeSetUserHandle(), DdeAbandonTransaction(), DdePostAdvise(), DdeCreateDataHandle(), DdeAddData(), DdeGetData(), DdeAccessData(), DdeUnaccessData(), DdeEnableCallback(), DdeCmpStringHandles(). Fri Nov 7 19:44:26 1997 Olaf Flebbe <o.flebbe@science-computing.de> * [files/directory.c] Fix typo in directory.c [broke loading of cdplayer on nt40] * [misc/main.c] Implemented -winver nt40. * [loader/resource.c] [user32.spec] Stubs for CopyAcceleratorTable, Destroy AcceleratorTable. Thu Nov 6 22:37:04 1997 Morten Welinder <welinder@rentec.com> * [files/drive.c] (GetDiskFreeSpace32A): Cap at 2GB. * [include/windows.h] Prototype DrawIconEx and CreateDIBSection32. Define OBM_RADIOCHECK. Add DI_* macros. * [objects/dib.c] [if1632/gdi.spec] CreateDIBSection is a WINAPI. Renamed to CreateDIBSection32. Implement CreateDIBSection16. * [if1632/user.spec] [if1632/user32.spec] Add DrawIconEx. * [objects/cursoricon.c] (CopyIcon32): Fix bogus implementation. * [objects/bitmap.c] (CopyBitmap32): New function. (CopyImage32): Do bitmaps. * [graphics/x11drv/text.c] (X11DRV_ExtTextOut): Change ascent and descent default to avoid zero-thinkness overstrike line. * [include/debugstr.h] [misc/debugstr.c] New files. * [msdos/dpmi.c] Don't prototype do_mscdex. In INT_Int31Handler, handle real-mode int 0x21, ah=0x52. * [msdos/int2f.c] Add dummys for 0x1681 and 0x1682. * [misc/registry.c] Fix memory leaks in RegDeleteKey32W. * [objects/text.c] In TEXT_NextLine, fix another off-by-one bug. * [include/bitmaps/obm_radiocheck] New file. (It a small circle used to radio-button menu items when selected.) * [objects/oembitmap.c] Add obm_radiocheck. * [include/windows.h] [if1632/user32.spec] [controls/menu.c] [if1632/user.spec] Define CheckMenuRadioItem{16,32}. Define GetMenuItemRect{16,32}. Wed Nov 5 11:30:14 1997 Marcus Meissner <msmeissn@cip.informatik.uni-erlangen.de> * [misc/main.c] Auto adjust versions depending on binary. Tue Nov 4 15:21:00 1997 Kristian Nielsen <kristian.nielsen@risoe.dk> * [controls/listbox.c] Paint full background in listbox items with tab stops enabled. * [if1632/thunk.c] Copy some more message parameter structures (DRAWITEMSTRUCT16, COMPAREITEMSTRUCT16) to the stack segment to fix broken programs that need this. * [windows/dce.c] Only clip sibling windows when the parent has the WS_CLIPSIBLINGS style set. * [windows/focus.c] Make order of events in FOCUS_SwitchFocus() reflect API docs. * [windows/defdlg.c] Fix problem with loss of focus in some dialogs. * [win32/code_page.c] Fix return value for MultiByteToWideChar(). * [BUGS] BCW now works.
379 lines
11 KiB
C
379 lines
11 KiB
C
/*
|
|
* Basic types definitions
|
|
*
|
|
* Copyright 1996 Alexandre Julliard
|
|
*/
|
|
|
|
#ifndef __WINE_WINTYPES_H
|
|
#define __WINE_WINTYPES_H
|
|
|
|
#ifdef __WINE__
|
|
# include "config.h"
|
|
# undef WINELIB
|
|
# undef WINELIB16
|
|
# undef WINELIB32
|
|
# undef UNICODE
|
|
#else /* __WINE__ */
|
|
# ifndef WINELIB
|
|
# define WINELIB
|
|
# endif
|
|
# ifdef WINELIB16
|
|
# undef WINELIB32
|
|
# else
|
|
# define WINELIB32
|
|
# endif
|
|
#endif /* __WINE__ */
|
|
|
|
/* Macros to map Winelib names to the correct implementation name */
|
|
/* depending on WINELIB16, WINELIB32 and UNICODE macros. */
|
|
|
|
#ifdef __WINE__
|
|
# define WINELIB_NAME(func) this is a syntax error
|
|
# define WINELIB_NAME_AW(func) this is a syntax error
|
|
#else /* __WINE__ */
|
|
# ifdef WINELIB32
|
|
# define WINELIB_NAME(func) func##32
|
|
# ifdef UNICODE
|
|
# define WINELIB_NAME_AW(func) func##32W
|
|
# else
|
|
# define WINELIB_NAME_AW(func) func##32A
|
|
# endif /* UNICODE */
|
|
# else /* WINELIB32 */
|
|
# define WINELIB_NAME(func) func##16
|
|
# define WINELIB_NAME_AW(func) func##16
|
|
# endif /* WINELIB32 */
|
|
#endif /* __WINE__ */
|
|
|
|
#ifdef __WINE__
|
|
# define DECL_WINELIB_TYPE(type) /* nothing */
|
|
# define DECL_WINELIB_TYPE_AW(type) /* nothing */
|
|
#else /* __WINE__ */
|
|
# define DECL_WINELIB_TYPE(type) typedef WINELIB_NAME(type) type
|
|
# define DECL_WINELIB_TYPE_AW(type) typedef WINELIB_NAME_AW(type) type
|
|
#endif /* __WINE__ */
|
|
|
|
|
|
/* Calling conventions definitions */
|
|
|
|
#ifdef __i386__
|
|
# if defined(__GNUC__) && (__GNUC__ == 2) && (__GNUC_MINOR__ >= 7)
|
|
# define __stdcall __attribute__((__stdcall__))
|
|
# define __cdecl __attribute__((__cdecl__))
|
|
# define __RESTORE_ES __asm__ __volatile__("pushw %ds\n\tpopw %es")
|
|
# else
|
|
# error You need gcc >= 2.7 to build Wine on a 386
|
|
# endif /* __GNUC__ */
|
|
#else /* __i386__ */
|
|
# define __stdcall
|
|
# define __cdecl
|
|
# define __RESTORE_ES
|
|
#endif /* __i386__ */
|
|
|
|
#define CALLBACK __stdcall
|
|
#define WINAPI __stdcall
|
|
#define APIPRIVATE __stdcall
|
|
#define PASCAL __stdcall
|
|
#define _pascal __stdcall
|
|
#define __export __stdcall
|
|
#define WINAPIV __cdecl
|
|
#define APIENTRY WINAPI
|
|
|
|
|
|
/* Standard data types. These are the same for emulator and library. */
|
|
|
|
typedef void VOID;
|
|
typedef short INT16;
|
|
typedef unsigned short UINT16;
|
|
typedef int INT32;
|
|
typedef unsigned int UINT32;
|
|
typedef unsigned short WORD;
|
|
typedef unsigned long DWORD;
|
|
typedef unsigned char BYTE;
|
|
typedef long LONG;
|
|
typedef char CHAR;
|
|
/* Some systems might have wchar_t, but we really need 16 bit characters */
|
|
typedef unsigned short WCHAR;
|
|
typedef unsigned short BOOL16;
|
|
typedef int BOOL32;
|
|
|
|
/* Integer types. These are the same for emulator and library. */
|
|
|
|
typedef UINT16 HANDLE16;
|
|
typedef UINT32 HANDLE32;
|
|
typedef UINT16 WPARAM16;
|
|
typedef UINT32 WPARAM32;
|
|
typedef LONG LPARAM;
|
|
typedef LONG LRESULT;
|
|
typedef WORD ATOM;
|
|
typedef WORD CATCHBUF[9];
|
|
typedef WORD *LPCATCHBUF;
|
|
typedef DWORD ACCESS_MASK;
|
|
typedef ACCESS_MASK REGSAM;
|
|
typedef HANDLE32 HHOOK;
|
|
typedef HANDLE32 HKEY;
|
|
typedef DWORD LCID;
|
|
typedef WORD LANGID;
|
|
typedef DWORD LCTYPE;
|
|
typedef float FLOAT;
|
|
|
|
/* Pointers types. These are the same for emulator and library. */
|
|
|
|
typedef CHAR *LPSTR;
|
|
typedef const CHAR *LPCSTR;
|
|
typedef WCHAR *LPWSTR;
|
|
typedef const WCHAR *LPCWSTR;
|
|
typedef BYTE *LPBYTE;
|
|
typedef WORD *LPWORD;
|
|
typedef DWORD *LPDWORD;
|
|
typedef LONG *LPLONG;
|
|
typedef VOID *LPVOID;
|
|
typedef const VOID *LPCVOID;
|
|
typedef INT16 *LPINT16;
|
|
typedef UINT16 *LPUINT16;
|
|
typedef INT32 *LPINT32;
|
|
typedef UINT32 *LPUINT32;
|
|
typedef HKEY *LPHKEY;
|
|
typedef FLOAT *LPFLOAT;
|
|
|
|
/* Special case: a segmented pointer is just a pointer in the user's code. */
|
|
|
|
#ifdef __WINE__
|
|
typedef DWORD SEGPTR;
|
|
#else
|
|
typedef void* SEGPTR;
|
|
#endif /* __WINE__ */
|
|
|
|
/* Handle types that exist both in Win16 and Win32. */
|
|
|
|
#define DECLARE_HANDLE(a) typedef HANDLE16 a##16; typedef HANDLE32 a##32;
|
|
DECLARE_HANDLE(HACCEL);
|
|
DECLARE_HANDLE(HBITMAP);
|
|
DECLARE_HANDLE(HBRUSH);
|
|
DECLARE_HANDLE(HCURSOR);
|
|
DECLARE_HANDLE(HDC);
|
|
DECLARE_HANDLE(HDROP);
|
|
DECLARE_HANDLE(HDRVR);
|
|
DECLARE_HANDLE(HDWP);
|
|
DECLARE_HANDLE(HFILE);
|
|
DECLARE_HANDLE(HFONT);
|
|
DECLARE_HANDLE(HGDIOBJ);
|
|
DECLARE_HANDLE(HGLOBAL);
|
|
DECLARE_HANDLE(HICON);
|
|
DECLARE_HANDLE(HINSTANCE);
|
|
DECLARE_HANDLE(HLOCAL);
|
|
DECLARE_HANDLE(HMENU);
|
|
DECLARE_HANDLE(HMETAFILE);
|
|
DECLARE_HANDLE(HMIDI);
|
|
DECLARE_HANDLE(HMIDIIN);
|
|
DECLARE_HANDLE(HMIDIOUT);
|
|
DECLARE_HANDLE(HMIXER);
|
|
DECLARE_HANDLE(HMIXEROBJ);
|
|
DECLARE_HANDLE(HMMIO);
|
|
DECLARE_HANDLE(HMODULE);
|
|
DECLARE_HANDLE(HPALETTE);
|
|
DECLARE_HANDLE(HPEN);
|
|
DECLARE_HANDLE(HQUEUE);
|
|
DECLARE_HANDLE(HRGN);
|
|
DECLARE_HANDLE(HRSRC);
|
|
DECLARE_HANDLE(HTASK);
|
|
DECLARE_HANDLE(HWAVE);
|
|
DECLARE_HANDLE(HWAVEIN);
|
|
DECLARE_HANDLE(HWAVEOUT);
|
|
DECLARE_HANDLE(HWND);
|
|
DECLARE_HANDLE(HKL);
|
|
#undef DECLARE_HANDLE
|
|
|
|
/* Callback function pointers types */
|
|
|
|
typedef LRESULT (CALLBACK *DLGPROC16)(HWND16,UINT16,WPARAM16,LPARAM);
|
|
typedef LRESULT (CALLBACK *DLGPROC32)(HWND32,UINT32,WPARAM32,LPARAM);
|
|
DECL_WINELIB_TYPE(DLGPROC);
|
|
typedef LRESULT (CALLBACK *DRIVERPROC16)(DWORD,HDRVR16,UINT16,LPARAM,LPARAM);
|
|
typedef LRESULT (CALLBACK *DRIVERPROC32)(DWORD,HDRVR32,UINT32,LPARAM,LPARAM);
|
|
DECL_WINELIB_TYPE(DRIVERPROC);
|
|
typedef INT16 (CALLBACK *EDITWORDBREAKPROC16)(LPSTR,INT16,INT16,INT16);
|
|
typedef INT32 (CALLBACK *EDITWORDBREAKPROC32A)(LPSTR,INT32,INT32,INT32);
|
|
typedef INT32 (CALLBACK *EDITWORDBREAKPROC32W)(LPWSTR,INT32,INT32,INT32);
|
|
DECL_WINELIB_TYPE_AW(EDITWORDBREAKPROC);
|
|
typedef LRESULT (CALLBACK *FARPROC16)();
|
|
typedef LRESULT (CALLBACK *FARPROC32)();
|
|
DECL_WINELIB_TYPE(FARPROC);
|
|
typedef INT16 (CALLBACK *GOBJENUMPROC16)(SEGPTR,LPARAM);
|
|
typedef INT32 (CALLBACK *GOBJENUMPROC32)(LPVOID,LPARAM);
|
|
DECL_WINELIB_TYPE(GOBJENUMPROC);
|
|
typedef BOOL16 (CALLBACK *GRAYSTRINGPROC16)(HDC16,LPARAM,INT16);
|
|
typedef BOOL32 (CALLBACK *GRAYSTRINGPROC32)(HDC32,LPARAM,INT32);
|
|
DECL_WINELIB_TYPE(GRAYSTRINGPROC);
|
|
typedef LRESULT (CALLBACK *HOOKPROC16)(INT16,WPARAM16,LPARAM);
|
|
typedef LRESULT (CALLBACK *HOOKPROC32)(INT32,WPARAM32,LPARAM);
|
|
DECL_WINELIB_TYPE(HOOKPROC);
|
|
typedef VOID (CALLBACK *LINEDDAPROC16)(INT16,INT16,LPARAM);
|
|
typedef VOID (CALLBACK *LINEDDAPROC32)(INT32,INT32,LPARAM);
|
|
DECL_WINELIB_TYPE(LINEDDAPROC);
|
|
typedef BOOL16 (CALLBACK *PROPENUMPROC16)(HWND16,SEGPTR,HANDLE16);
|
|
typedef BOOL32 (CALLBACK *PROPENUMPROC32A)(HWND32,LPCSTR,HANDLE32);
|
|
typedef BOOL32 (CALLBACK *PROPENUMPROC32W)(HWND32,LPCWSTR,HANDLE32);
|
|
DECL_WINELIB_TYPE_AW(PROPENUMPROC);
|
|
typedef BOOL32 (CALLBACK *PROPENUMPROCEX32A)(HWND32,LPCSTR,HANDLE32,LPARAM);
|
|
typedef BOOL32 (CALLBACK *PROPENUMPROCEX32W)(HWND32,LPCWSTR,HANDLE32,LPARAM);
|
|
DECL_WINELIB_TYPE_AW(PROPENUMPROCEX);
|
|
typedef VOID (CALLBACK *TIMERPROC16)(HWND16,UINT16,UINT16,DWORD);
|
|
typedef VOID (CALLBACK *TIMERPROC32)(HWND32,UINT32,UINT32,DWORD);
|
|
DECL_WINELIB_TYPE(TIMERPROC);
|
|
typedef LRESULT (CALLBACK *WNDENUMPROC16)(HWND16,LPARAM);
|
|
typedef LRESULT (CALLBACK *WNDENUMPROC32)(HWND32,LPARAM);
|
|
DECL_WINELIB_TYPE(WNDENUMPROC);
|
|
typedef LRESULT (CALLBACK *WNDPROC16)(HWND16,UINT16,WPARAM16,LPARAM);
|
|
typedef LRESULT (CALLBACK *WNDPROC32)(HWND32,UINT32,WPARAM32,LPARAM);
|
|
DECL_WINELIB_TYPE(WNDPROC);
|
|
|
|
/* TCHAR data types definitions for Winelib. */
|
|
/* These types are _not_ defined for the emulator, because they */
|
|
/* depend on the UNICODE macro that only exists in user's code. */
|
|
|
|
#ifndef __WINE__
|
|
# if defined(WINELIB32) && defined(UNICODE)
|
|
typedef WCHAR TCHAR;
|
|
typedef LPWSTR LPTSTR;
|
|
typedef LPCWSTR LPCTSTR;
|
|
# else /* WINELIB32 && UNICODE */
|
|
typedef CHAR TCHAR;
|
|
typedef LPSTR LPTSTR;
|
|
typedef LPCSTR LPCTSTR;
|
|
# endif /* WINELIB32 && UNICODE */
|
|
#endif /* __WINE__ */
|
|
|
|
/* Data types specific to the library. These do _not_ exist in the emulator. */
|
|
|
|
DECL_WINELIB_TYPE(INT);
|
|
DECL_WINELIB_TYPE(LPINT);
|
|
DECL_WINELIB_TYPE(LPUINT);
|
|
DECL_WINELIB_TYPE(UINT);
|
|
DECL_WINELIB_TYPE(BOOL);
|
|
DECL_WINELIB_TYPE(WPARAM);
|
|
|
|
DECL_WINELIB_TYPE(HACCEL);
|
|
DECL_WINELIB_TYPE(HANDLE);
|
|
DECL_WINELIB_TYPE(HBITMAP);
|
|
DECL_WINELIB_TYPE(HBRUSH);
|
|
DECL_WINELIB_TYPE(HCURSOR);
|
|
DECL_WINELIB_TYPE(HDC);
|
|
DECL_WINELIB_TYPE(HDROP);
|
|
DECL_WINELIB_TYPE(HDRVR);
|
|
DECL_WINELIB_TYPE(HDWP);
|
|
DECL_WINELIB_TYPE(HFILE);
|
|
DECL_WINELIB_TYPE(HFONT);
|
|
DECL_WINELIB_TYPE(HGDIOBJ);
|
|
DECL_WINELIB_TYPE(HGLOBAL);
|
|
DECL_WINELIB_TYPE(HICON);
|
|
DECL_WINELIB_TYPE(HINSTANCE);
|
|
DECL_WINELIB_TYPE(HLOCAL);
|
|
DECL_WINELIB_TYPE(HMENU);
|
|
DECL_WINELIB_TYPE(HMETAFILE);
|
|
DECL_WINELIB_TYPE(HMIDI);
|
|
DECL_WINELIB_TYPE(HMIDIIN);
|
|
DECL_WINELIB_TYPE(HMIDIOUT);
|
|
DECL_WINELIB_TYPE(HMMIO);
|
|
DECL_WINELIB_TYPE(HMODULE);
|
|
DECL_WINELIB_TYPE(HPALETTE);
|
|
DECL_WINELIB_TYPE(HPEN);
|
|
DECL_WINELIB_TYPE(HQUEUE);
|
|
DECL_WINELIB_TYPE(HRGN);
|
|
DECL_WINELIB_TYPE(HRSRC);
|
|
DECL_WINELIB_TYPE(HTASK);
|
|
DECL_WINELIB_TYPE(HWAVE);
|
|
DECL_WINELIB_TYPE(HWAVEIN);
|
|
DECL_WINELIB_TYPE(HWAVEOUT);
|
|
DECL_WINELIB_TYPE(HWND);
|
|
|
|
/* Misc. constants. */
|
|
|
|
#ifdef FALSE
|
|
#undef FALSE
|
|
#endif
|
|
#define FALSE 0
|
|
|
|
#ifdef TRUE
|
|
#undef TRUE
|
|
#endif
|
|
#define TRUE 1
|
|
|
|
#ifdef NULL
|
|
#undef NULL
|
|
#endif
|
|
#define NULL 0
|
|
|
|
/* Define some empty macros for compatibility with Windows code. */
|
|
|
|
#ifndef __WINE__
|
|
#define NEAR
|
|
#define FAR
|
|
#define _far
|
|
#define _near
|
|
#endif /* __WINE__ */
|
|
|
|
/* Macro for structure packing. */
|
|
|
|
#ifdef __GNUC__
|
|
#define WINE_PACKED __attribute__ ((packed))
|
|
#else
|
|
#define WINE_PACKED /* nothing */
|
|
#endif
|
|
|
|
/* Macros to split words and longs. */
|
|
|
|
#define LOBYTE(w) ((BYTE)(WORD)(w))
|
|
#define HIBYTE(w) ((BYTE)((WORD)(w) >> 8))
|
|
|
|
#define LOWORD(l) ((WORD)(DWORD)(l))
|
|
#define HIWORD(l) ((WORD)((DWORD)(l) >> 16))
|
|
|
|
#define SLOWORD(l) ((INT16)(LONG)(l))
|
|
#define SHIWORD(l) ((INT16)((LONG)(l) >> 16))
|
|
|
|
#define MAKELONG(low,high) ((LONG)(((WORD)(low)) | \
|
|
(((DWORD)((WORD)(high))) << 16)))
|
|
#define MAKELPARAM(low,high) ((LPARAM)MAKELONG(low,high))
|
|
#define MAKEWPARAM(low,high) ((WPARAM32)MAKELONG(low,high))
|
|
#define MAKEINTATOM(atom) ((LPCSTR)MAKELONG((atom),0))
|
|
|
|
#define SELECTOROF(ptr) (HIWORD(ptr))
|
|
#define OFFSETOF(ptr) (LOWORD(ptr))
|
|
|
|
/* Macros to access unaligned or wrong-endian WORDs and DWORDs. */
|
|
|
|
#ifdef __i386__
|
|
#define PUT_WORD(ptr,w) (*(WORD *)(ptr) = (w))
|
|
#define GET_WORD(ptr) (*(WORD *)(ptr))
|
|
#define PUT_DWORD(ptr,dw) (*(DWORD *)(ptr) = (dw))
|
|
#define GET_DWORD(ptr) (*(DWORD *)(ptr))
|
|
#else
|
|
#define PUT_WORD(ptr,w) (*(BYTE *)(ptr) = LOBYTE(w), \
|
|
*((BYTE *)(ptr) + 1) = HIBYTE(w))
|
|
#define GET_WORD(ptr) ((WORD)(*(BYTE *)(ptr) | \
|
|
(WORD)(*((BYTE *)(ptr)+1) << 8)))
|
|
#define PUT_DWORD(ptr,dw) (PUT_WORD((ptr),LOWORD(dw)), \
|
|
PUT_WORD((WORD *)(ptr)+1,HIWORD(dw)))
|
|
#define GET_DWORD(ptr) ((DWORD)(GET_WORD(ptr) | \
|
|
((DWORD)GET_WORD((WORD *)(ptr)+1) << 16)))
|
|
#endif /* __i386__ */
|
|
|
|
/* MIN and MAX macros */
|
|
|
|
#ifdef MAX
|
|
#undef MAX
|
|
#endif
|
|
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
|
|
|
|
#ifdef MIN
|
|
#undef MIN
|
|
#endif
|
|
#define MIN(a,b) (((a) < (b)) ? (a) : (b))
|
|
|
|
/* Winelib run-time flag */
|
|
|
|
#ifdef __WINE__
|
|
extern int __winelib;
|
|
#endif /* __WINE__ */
|
|
|
|
#endif /* __WINE_WINTYPES_H */
|