Subversion Repositories Kolibri OS

Rev

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

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