home *** CD-ROM | disk | FTP | other *** search
/ Cutting-Edge 3D Game Programming with C++ / CE3DC++.ISO / BOOK / CHAP08 / ATYPES.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-24  |  309 b   |  18 lines

  1. //
  2. // File name: ATypes.HPP
  3. //
  4. // Description: BYTE, WORD, and DWORD types
  5. //
  6. // Author: John De Goes
  7. //
  8. // Project: Cutting Edge 3D Game Programming
  9. //
  10.  
  11. #ifndef ATYPESHPP
  12. #define ATYPESHPP
  13.  
  14. typedef unsigned char BYTE;
  15. typedef unsigned short int WORD;
  16. typedef unsigned long int DWORD;
  17.  
  18. #endif