home *** CD-ROM | disk | FTP | other *** search
- //
- // File name: ATypes.HPP
- //
- // Description: BYTE, WORD, and DWORD types
- //
- // Author: John De Goes
- //
- // Project: Cutting Edge 3D Game Programming
- //
-
- #ifndef ATYPESHPP
- #define ATYPESHPP
-
- typedef unsigned char BYTE;
- typedef unsigned short int WORD;
- typedef unsigned long int DWORD;
-
- #endif