kolibrios-fun/programs/develop/libraries/pixlib/types.h
Sergey Semyonov (Serge) 673a89c327 lost pixlib sources
git-svn-id: svn://kolibrios.org@882 a494cfbc-eb01-0410-851d-a64ba20cac60
2008-10-20 15:53:55 +00:00

22 lines
362 B
C

typedef unsigned int handle_t;
typedef unsigned int size_t;
typedef unsigned int count_t;
typedef unsigned char u8_t;
typedef unsigned short int u16_t;
typedef unsigned int u32_t;
typedef unsigned long long u64_t;
typedef int bool;
#define NULL (void*)0
#define TRUE (bool)1
#define FALSE (bool)0