home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0600 / CCE_0657.ZIP / CCE_0657.PD / PORTAB.H < prev    next >
Text File  |  1993-08-31  |  575b  |  29 lines

  1. /*      PORTAB.H
  2.  
  3.         For use with rsh output of RCS
  4.  
  5.         Copyright (c) Borland International 1990
  6.         All Rights Reserved.
  7. */
  8.  
  9.  
  10. #if !defined( __PORTAB__ )
  11. #define __PORTAB__
  12.  
  13. typedef          void    VOID;
  14. typedef          char    BYTE;
  15. typedef          int     WORD;
  16. typedef          long    LONG;
  17. typedef unsigned char    UBYTE;
  18. typedef unsigned int     UWORD;
  19. typedef unsigned long    ULONG;
  20.  
  21. typedef char BOOLEAN;
  22.  
  23. #define TRUE 1
  24. #define FALSE 0
  25.  
  26. #endif
  27.  
  28. /***********************************************************************/
  29. ə