Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1.  
  2.  
  3. typedef  unsigned char        u8_t;
  4. typedef  unsigned short int   u16_t;
  5. typedef  unsigned int         u32_t;
  6. typedef  unsigned long long   u64_t;
  7.  
  8. typedef  unsigned int         addr_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         color_t;
  15.  
  16. typedef  unsigned int         Bool;
  17.  
  18. #define  TRUE  (Bool)1
  19. #define  FALSE (Bool)0
  20.  
  21.  
  22.