home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 31 / CDASC_31_1996_juillet_aout.iso / vrac / lsdoor09.zip / WILEY.H < prev    next >
C/C++ Source or Header  |  1996-03-23  |  591b  |  30 lines

  1. // General stuff wiley uses a lot...
  2.  
  3. typedef unsigned long  ulong;
  4. typedef unsigned int   uint;
  5. typedef unsigned short ushort;
  6. typedef unsigned char  uchar;
  7. typedef unsigned char  truth;
  8. typedef unsigned char  test;
  9.  
  10. typedef unsigned short word;
  11. typedef unsigned char  byte;
  12.  
  13. #define true    1
  14. #define false    0
  15.  
  16. #define _genInt(i) __int__(i)
  17.  
  18. #define BEEP() {sound(2500); delay(250); nosound(); delay(50);}
  19. #define RAREBEEP() {sound(3000); delay(1500); nosound(); delay(500);}
  20.  
  21. #ifdef __cplusplus
  22. #define DotDot ...
  23. #else
  24. #define DotDot
  25. #endif
  26.  
  27. // End of Wiley.H
  28.  
  29.  
  30.