home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / OLS / Os2 / LHA2P205 / LHA2P205.LZH / lha2-2.05pre / source.lzh / src / typedef.h < prev    next >
C/C++ Source or Header  |  1994-10-23  |  585b  |  30 lines

  1. /*
  2.  * typedef.h
  3.  *   Copyright (C) 1988-1992, Haruyasu YOSHIZAKI
  4.  *
  5.  * $Log$
  6.  */
  7.  
  8.  
  9. #ifndef __INCLUDED_TYPEDEF_H
  10. #define __INCLUDED_TYPEDEF_H
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14.  
  15.  
  16. typedef unsigned char  uchar;   /*  8 bits */
  17. typedef unsigned int   uint;    /* 16 - 32 bits or more */
  18. typedef unsigned short ushort;  /* 16 bits */
  19. typedef unsigned long  ulong;   /* 32 bits or more */
  20. typedef int        bool;
  21. typedef unsigned char    byte;
  22. typedef unsigned short    hword;
  23. typedef unsigned long    word;
  24.  
  25.  
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29. #endif /* __INCLUDED_TYPEDEF_H */
  30.