Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef __MITYPES__
  2. #define __MITYPES__
  3.  
  4. #ifndef FALSE
  5. #define FALSE   0
  6. #endif
  7.  
  8. #ifndef TRUE
  9. #define TRUE    1
  10. #endif
  11.  
  12. /* Maximum length of a filename (inc. path, filename and ext.) */
  13.  
  14. #ifndef _MAX_PATH
  15. #define _MAX_PATH       260                     /* Max length of filename, inc. path. */
  16. #endif
  17.  
  18.  
  19. typedef unsigned char   BYTE;
  20. typedef unsigned short  WORD;
  21. typedef unsigned long   DWORD;
  22.  
  23.  
  24. #endif          /* __MITYPES__ */
  25.