diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2002-07-17 03:37:45 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2002-07-17 03:37:45 +0000 |
commit | c344492ccca8f1b33d676cc6b589b4b2745ef1bd (patch) | |
tree | 48bc36d4b551b1b9030a060c7ae9dd7eb8e45471 /winsup/w32api/include/windef.h | |
parent | 190b468725b7d3c0135e4ee8824b8275c09283f6 (diff) | |
download | cygnal-c344492ccca8f1b33d676cc6b589b4b2745ef1bd.tar.gz cygnal-c344492ccca8f1b33d676cc6b589b4b2745ef1bd.tar.bz2 cygnal-c344492ccca8f1b33d676cc6b589b4b2745ef1bd.zip |
2002-07-17 Bart Oldeman <bart.oldeman@btinternet.com>
* include/ddeml.h (MH_*) Add defines.
(MONHSZSTRUCT): Add structure and typedefs.
(MONLINKSTRUCT): Ditto.
(MONCONVSTRUCT): Ditto.
(MONCBSTRUCT): Ditto.
(MONERRSTRUCT): Ditto.
(MONMSGSTRUCT): Ditto.
* include/windef.h: Don't define __cdecl or _cdecl for
__WATCOM__.
Don't define _export or __export for __WATCOM__.
* include/windows.h (imm.h): #include.
* include/winnt.h (LPEXCEPTION_RECORD): Add typedef.
2002-07-17 Danny Smith <dannysmith@users.sourceforge.net>
* include/wtypes.h: Remove duplicate #includes of rhc.h and
rpcndr.h.
Diffstat (limited to 'winsup/w32api/include/windef.h')
-rw-r--r-- | winsup/w32api/include/windef.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/winsup/w32api/include/windef.h b/winsup/w32api/include/windef.h index aaf723349..24a84da9b 100644 --- a/winsup/w32api/include/windef.h +++ b/winsup/w32api/include/windef.h @@ -75,6 +75,8 @@ extern "C" { #ifndef _declspec #define _declspec(e) __attribute__((e)) #endif +#elif defined(__WATCOMC__) +#define PACKED #else #define PACKED #define _cdecl @@ -113,12 +115,14 @@ extern "C" { #define LOBYTE(w) ((BYTE)(w)) #define HIBYTE(w) ((BYTE)(((WORD)(w)>>8)&0xFF)) +#ifndef __WATCOMC__ #ifndef _export #define _export #endif #ifndef __export #define __export #endif +#endif #ifndef NOMINMAX #ifndef max |