Subversion Repositories Kolibri OS

Rev

Go to most recent revision | 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  signed char        i8_t;
  11. typedef  signed short int   i16_t;
  12.  
  13. typedef  unsigned int         addr_t;
  14.  
  15. typedef  unsigned int size_t;
  16. typedef  unsigned int count_t;
  17. typedef  unsigned int eflags_t;
  18.  
  19. typedef  unsigned int Bool;
  20.  
  21. #define  TRUE  (Bool)1
  22. #define  FALSE (Bool)0
  23.  
  24.  
  25.