home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wvis0626.zip / warpvision_20020626.zip / gui / base.h < prev    next >
C/C++ Source or Header  |  2002-06-19  |  328b  |  23 lines

  1. /*
  2. ** Module   :BASE.H
  3. ** Abstract :
  4. **
  5. ** Copyright (C) Sergey I. Yevtushenko
  6. **
  7. ** Log: Sun  31/01/1999 Created
  8. **
  9. */
  10.  
  11. #ifndef __BASE_H
  12. #define __BASE_H
  13.  
  14. typedef void *Ptr;
  15. typedef Ptr* PPtr;
  16.  
  17. typedef unsigned char  byte;
  18. typedef unsigned short word;
  19. typedef unsigned long  dword;
  20.  
  21. #endif  /*__BASE_H*/
  22.  
  23.