]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/isql.h
improved conditional compilation test (added wxUSE_POSTSCRIPT)
[wxWidgets.git] / include / wx / isql.h
index a1f406626dc0b7550911455df57909cac85b7c6c..9edfae366ad3ab377b3a542a3115827524a31c63 100644 (file)
@@ -6,8 +6,8 @@
  *  iODBC defines
  *
  *  The iODBC driver manager.
- *  
- *  Copyright (C) 1995 by Ke Jin <kejin@empress.com> 
+ *
+ *  Copyright (C) 1995 by Ke Jin <kejin@empress.com>
  *
  *  This library is free software; you can redistribute it and/or
  *  modify it under the terms of the GNU Library General Public
 #ifndef _ISQL_H
 #define _ISQL_H
 
-#ifdef WIN32
+#if defined(__WIN16__)
+
+#define SQL_API EXPORT CALLBACK
+#ifndef EXPORT
+#define EXPORT _export
+#endif
+
+#elif defined(WIN32)
 #define SQL_API                                __stdcall
+
+#ifndef FAR
+#define FAR
+#endif
+
+#elif defined(__OS2__)
+#define SQL_API                                _Optlink
+
+#ifndef FAR
+#define FAR
+#define EXPORT
+#define CALLBACK
+#endif
+
 #else
 #define FAR
 #define EXPORT