home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Amiga / Workbench / Archivers / PPCUnACE.lha / PPCUnACE / source.lha / Src / Declare.h < prev    next >
C/C++ Source or Header  |  1997-12-04  |  746b  |  33 lines

  1. /******************************************************/
  2. /*                                                    */
  3. /* declare.h: declaration-symbols (UCHAR, ULONG, ...) */
  4. /*                                                    */
  5. /******************************************************/
  6.  
  7. #ifndef __declare_h
  8. #define __declare_h
  9.  
  10. #ifdef AMIGA
  11.  
  12. #include <exec/types.h>
  13.  
  14. #else /* AMIGA */
  15.  
  16. typedef unsigned short USHORT;
  17. typedef short          SHORT ;
  18. typedef unsigned short UWORD ;
  19. typedef short          WORD  ;
  20. typedef unsigned long  ULONG ;
  21. typedef long           LONG  ;
  22.  
  23. #endif  /* !AMIGA */
  24.  
  25. typedef unsigned char  UCHAR ;
  26. typedef char           CHAR  ;
  27. typedef unsigned       UINT  ;
  28. typedef int            INT   ;
  29.  
  30.  
  31. #endif /* __declare_h */
  32.  
  33.