home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / slfinsta.zip / include / declare.h < prev    next >
C/C++ Source or Header  |  2000-03-26  |  909b  |  39 lines

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