forked from KolibriOS/kolibrios
66bf88987d
git-svn-id: svn://kolibrios.org@1176 a494cfbc-eb01-0410-851d-a64ba20cac60
17 lines
268 B
C
17 lines
268 B
C
|
|
#define TEXT_ORIENTATION_FROM_LEFT_TO_RIGHT_ON 0x1
|
|
#define TEXT_ORIENTATION_FROM_LEFT_TO_RIGHT_OFF 0xfe
|
|
|
|
#define TEXT_BACKGROUND_ON 0x2;
|
|
#define TEXT_BACKGROUND_OFF 0xfd;
|
|
|
|
struct TextSize
|
|
{
|
|
int sizex;
|
|
int sizey;
|
|
};
|
|
|
|
typedef struct TextSize gui_text_size_t;
|
|
|
|
|