Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 876 → Rev 877

/programs/system/drivers/ati2d/types.h
0,0 → 1,19
 
#define NULL (void*)0
 
 
typedef unsigned char u8_t;
typedef unsigned short int u16_t;
typedef unsigned int u32_t;
typedef unsigned long long u64_t;
 
typedef unsigned int size_t;
typedef unsigned int count_t;
typedef unsigned int eflags_t;
 
typedef int bool;
 
#define TRUE (bool)1
#define FALSE (bool)0