home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cppsql.zip / SQL.ZIP / PORTABLE.H < prev    next >
Text File  |  1992-09-11  |  1KB  |  51 lines

  1. #ifndef _portable_h_inc
  2. #define _portable_h_inc
  3.  
  4. /* :H1 portable: START OF SPECIFICATIONS
  5. //----------------------------------------------------------------------
  6. //
  7. //  Module Name: Portable Defines Include
  8. //
  9. //  Description: This include file contains the defines to allow portable
  10. //               applications
  11. //
  12. //  Product Classification:
  13. //    IBM Internal Use Only
  14. //    (C) Copyright IBM Corp. 1992
  15. //
  16. //  Status: New
  17. //
  18. //  Initial Author: George L. Havens
  19. //
  20. //  Compiler: Zortech C++
  21. //
  22. // Change Activity -----------------------------------------------------
  23. //
  24. // $MOD(module) COMP(component) PROD(product): Description...
  25. //
  26. // FLAG  REASON  VERS  DATE  WHO   DESCRIPTION
  27. // ---- -------- ---- ------ ---   -----------
  28. //               V103 911291 GLH : Initial level
  29. //
  30. // END-OF-SPECIFICATIONS -----------------------------------------------*/
  31.  
  32. #ifndef EXPENTRY              // os2def.h
  33.  #define CHAR char
  34.  #define SHORT int
  35.  #define LONG long
  36.  #define USHORT unsigned int
  37.  #define ULONG unsigned long
  38.  #define BYTE char
  39.  
  40.  #define TRUE 1
  41.  #define FALSE 0
  42.  
  43.  #define VOID void
  44. #endif
  45.  
  46. #define EXTERN extern
  47. #define BOOLEAN unsigned int
  48. #define FOREVER for (;;)
  49.  
  50. #endif
  51.