* include/winbase.h (WINBASEAPI): Guard with __INSIDE_CYGWIN__.

This commit is contained in:
Danny Smith 2004-08-24 23:20:42 +00:00
parent bb647ab68c
commit 72fdc157bf
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2004-08-25 Danny Smith <dannysmith@users.sourceforge.net>
* include/winbase.h (WINBASEAPI): Guard with __INSIDE_CYGWIN__.
2004-08-24 Sam Robb <samrobb@users.sourceforge.net>
* include/winbase.h (GetFileSizeEx): Add _WIN32_WINNT >= 0x0500

View file

@ -5,7 +5,12 @@
#endif
#ifndef WINBASEAPI
#ifdef __INSIDE_CYGWIN__
#define WINBASEAPI
#else
#define WINBASEAPI DECLSPEC_IMPORT
#endif
#endif
#ifdef __cplusplus
extern "C" {