[client] x11/sdl: get the border dimensions from the backend

This commit is contained in:
Geoffrey McRae
2021-01-25 22:23:53 +11:00
parent 6b1e310343
commit dbb18a6ecb
6 changed files with 98 additions and 19 deletions

View File

@@ -25,6 +25,16 @@ struct DoublePoint
double x, y;
};
struct Rect
{
int x, y, w, h;
};
struct Border
{
int left, top, right, bottom;
};
typedef enum FrameType
{
FRAME_TYPE_INVALID ,