home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / PRO2.ZIP / PORTABLE.H < prev    next >
Text File  |  1988-12-27  |  328b  |  21 lines

  1. /* define DOS or OS2 as target operating system */
  2. #ifdef OS2
  3.  
  4. /* include the API call prototypes */
  5. #define INCL_BASE
  6.  
  7. #endif
  8.  
  9. #include <os.h>
  10.  
  11. /* if compiling a DLL or compiling for use with a DLL use this */
  12. #ifndef DL
  13. #define EXPORT
  14. #endif
  15.  
  16. #ifdef OS2
  17. #ifdef DL
  18. #define EXPORT    far _loadds
  19. #endif
  20. #endif
  21.