somewhat functional
Some checks failed
pyrite-dev/milsko/pipeline/head There was a failure building this commit

This commit is contained in:
Nishi 2026-09-15 11:58:16 +09:00
commit 097e11244c
6 changed files with 490 additions and 17 deletions

View file

@ -32,6 +32,8 @@ typedef struct _MwTab* MwTab;
typedef struct _MwTable* MwTable;
typedef struct _MwChartEntry MwChartEntry;
typedef struct _MwChart* MwChart;
typedef struct _MwDocumentLayout MwDocumentLayout;
typedef struct _MwDocument* MwDocument;
typedef struct _MwMouse MwMouse;
typedef struct _MwTTFInfo* MwTTFInfo;
#ifdef _MILSKO
@ -264,6 +266,23 @@ struct _MwMouse {
int button;
};
struct _MwDocumentLayout {
int type;
int x;
int y;
char* text;
int integer;
MwFLFont font;
};
struct _MwDocument {
MwDocumentLayout* layouts;
MwFLFont headers[6];
};
struct _MwTTFInfo {
char* family;
int weight;