home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cppsql.zip / SQLSRC.ZIP / PORTABLE.H next >
Text File  |  1992-07-13  |  1KB  |  53 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 Confidential (IBM Confidential-Restricted when Combined
  14. //    with the Aggregated OCO Source Modules for this Program)
  15. //    OCO Source Materials
  16. //    product-id (C) Copyright IBM Corp. date1, date2
  17. //
  18. //  Status: New
  19. //
  20. //  Initial Author: George L. Havens
  21. //
  22. //  Compiler: MetaWare HighC Version 1.6
  23. //
  24. // Change Activity -----------------------------------------------------
  25. //
  26. // $MOD(module) COMP(component) PROD(product): Description...
  27. //
  28. // FLAG  REASON  VERS  DATE  WHO   DESCRIPTION
  29. // ---- -------- ---- ------ ---   -----------
  30. //               V103 911291 GLH : Initial level
  31. //
  32. // END-OF-SPECIFICATIONS -----------------------------------------------*/
  33.  
  34. #ifndef EXPENTRY              // os2def.h
  35.  #define CHAR char
  36.  #define SHORT int
  37.  #define LONG long
  38.  #define USHORT unsigned int
  39.  #define ULONG unsigned long
  40.  #define BYTE char
  41.  
  42.  #define TRUE 1
  43.  #define FALSE 0
  44.  
  45.  #define VOID void
  46. #endif
  47.  
  48. #define EXTERN extern
  49. #define BOOLEAN unsigned int
  50. #define FOREVER for (;;)
  51.  
  52. #endif
  53.