Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6438 → Rev 6439

/programs/develop/ktcc/trunk/libc/include/kos32sys1.h
30,7 → 30,8
 
typedef unsigned int color_t;
 
typedef union
 
typedef union __attribute__((packed)) pos_t
{
uint32_t val;
struct
37,10 → 38,11
{
short x;
short y;
}xy;
} __attribute__((packed)) pos_t ;
};
} pos_t;
 
typedef union
 
typedef union __attribute__((packed)) oskey_t
{
uint32_t val;
struct
48,8 → 50,8
uint8_t state;
uint8_t code;
uint16_t ctrl_key;
}in;
}__attribute__((packed)) oskey_t ;
};
} oskey_t;
 
typedef struct
{
154,6 → 156,7
};
 
/*
// TinyC dont support aliasing of static inline funcs
static inline void BeginDraw(void) __attribute__ ((alias ("begin_draw")));
static inline void EndDraw(void) __attribute__ ((alias ("end_draw")));
static inline void DrawWindow(int x, int y, int w, int h, const char *name,