Subversion Repositories Kolibri OS

Rev

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

  1.  
  2. #define  NULL (void*)0
  3.  
  4.  
  5. typedef  unsigned char        u8_t;
  6. typedef  unsigned short int   u16_t;
  7. typedef  unsigned int         u32_t;
  8. typedef  unsigned long long   u64_t;
  9.  
  10. typedef  unsigned int size_t;
  11. typedef  unsigned int count_t;
  12. typedef  unsigned int eflags_t;
  13.  
  14. typedef  unsigned int Bool;
  15.  
  16. #define  TRUE  (Bool)1
  17. #define  FALSE (Bool)0
  18.  
  19.  
  20.