ladybird/Kernel/GUITypes.h

24 lines
341 B
C
Raw Normal View History

2019-01-13 01:59:38 +01:00
#pragma once
// GUI system call API types.
struct GUI_Rect {
int x;
int y;
int width;
int height;
};
struct GUI_WindowFlags { enum {
Visible = 1 << 0,
}; };
typedef unsigned GUI_Color;
struct GUI_CreateWindowParameters {
GUI_Rect rect;
GUI_Color background_color;
unsigned flags;
char title[128];
};