cygwin.h 340 B

123456789101112131415161718
  1. /* src/include/port/cygwin.h */
  2. #include <cygwin/version.h>
  3. /*
  4. * Check for b20.1 and disable AF_UNIX family socket support.
  5. */
  6. #if CYGWIN_VERSION_DLL_MAJOR < 1001
  7. #undef HAVE_UNIX_SOCKETS
  8. #endif
  9. #ifdef BUILDING_DLL
  10. #define PGDLLIMPORT __declspec (dllexport)
  11. #else
  12. #define PGDLLIMPORT __declspec (dllimport)
  13. #endif
  14. #define PGDLLEXPORT