home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sffdk10b.zip / h / sftypes.h < prev   
C/C++ Source or Header  |  2001-03-05  |  662b  |  30 lines

  1. /*
  2. ** Module   :SFTYPES.H
  3. ** Abstract :Data types used in headers/sample
  4. **
  5. ** Copyright (C) Link Guard Solutions
  6. ** For conditions of distribution and use, see license in license.txt
  7. **
  8. ** Log: Thu  21/12/2000 Created
  9. **
  10. */
  11. #ifndef __SFTYPES_H
  12. #define __SFTYPES_H
  13.  
  14. typedef void *Ptr;
  15. typedef Ptr* PPtr;
  16.  
  17. typedef unsigned short  word;
  18. typedef unsigned long   dword;
  19. typedef unsigned char   byte;
  20. typedef signed short    sword;
  21. typedef signed long     sdword;
  22. typedef signed char     sbyte;
  23. typedef dword           Bool;
  24. typedef dword           Hdl;
  25. typedef dword           Hev;
  26. typedef dword           Tid;
  27.  
  28. #endif  /*__SFTYPES_H*/
  29.  
  30.