Subversion Repositories Kolibri OS

Rev

Rev 854 | Go to most recent revision | Blame | Compare with Previous | 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  u32_t addr_t;
  11. typedef  u32_t pfn_t;
  12.  
  13. typedef  u32_t count_t;
  14. typedef  u32_t size_t;
  15. typedef  u32_t index_t;
  16. typedef  u32_t eflags_t;
  17.  
  18.  
  19. typedef  int bool;
  20.  
  21. #define  true   (bool)1
  22. #define  false  (bool)0
  23.  
  24.  
  25.