home *** CD-ROM | disk | FTP | other *** search
- #ifndef _portable_h_inc
- #define _portable_h_inc
-
- /* :H1 portable: START OF SPECIFICATIONS
- //----------------------------------------------------------------------
- //
- // Module Name: Portable Defines Include
- //
- // Description: This include file contains the defines to allow portable
- // applications
- //
- // Product Classification:
- // IBM Internal Use Only
- // (C) Copyright IBM Corp. 1992
- //
- // Status: New
- //
- // Initial Author: George L. Havens
- //
- // Compiler: Zortech C++
- //
- // Change Activity -----------------------------------------------------
- //
- // $MOD(module) COMP(component) PROD(product): Description...
- //
- // FLAG REASON VERS DATE WHO DESCRIPTION
- // ---- -------- ---- ------ --- -----------
- // V103 911291 GLH : Initial level
- //
- // END-OF-SPECIFICATIONS -----------------------------------------------*/
-
- #ifndef EXPENTRY // os2def.h
- #define CHAR char
- #define SHORT int
- #define LONG long
- #define USHORT unsigned int
- #define ULONG unsigned long
- #define BYTE char
-
- #define TRUE 1
- #define FALSE 0
-
- #define VOID void
- #endif
-
- #define EXTERN extern
- #define BOOLEAN unsigned int
- #define FOREVER for (;;)
-
- #endif