mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 20:32:35 +03:00
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;
|
||
|
|
||
|
|