Header And Logo

PostgreSQL
| The world's most advanced open source database.

cygwin.h

Go to the documentation of this file.
00001 /* src/include/port/cygwin.h */
00002 
00003 #include <cygwin/version.h>
00004 
00005 /*
00006  * Check for b20.1 and disable AF_UNIX family socket support.
00007  */
00008 #if CYGWIN_VERSION_DLL_MAJOR < 1001
00009 #undef HAVE_UNIX_SOCKETS
00010 #endif
00011 
00012 #ifdef BUILDING_DLL
00013 #define PGDLLIMPORT __declspec (dllexport)
00014 #else
00015 #define PGDLLIMPORT __declspec (dllimport)
00016 #endif
00017 
00018 #define PGDLLEXPORT