home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / snip9707.zip / HILOBYTE.H < prev    next >
C/C++ Source or Header  |  1997-07-05  |  228b  |  10 lines

  1. /* +++Date last modified: 05-Jul-1997 */
  2.  
  3. #ifndef HILOBYTE__H
  4. #define HILOBYTE__H
  5.  
  6. #define LoByte(x) ((unsigned char)((x) & 0xff))
  7. #define HiByte(x) ((unsigned char)((unsigned short)(x) >> 8))
  8.  
  9. #endif /* HILOBYTE__H */
  10.