git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@17 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-09-28 09:14:57 +00:00
parent 5170d6c0db
commit edfa67e964
3 changed files with 39 additions and 4 deletions

View File

@@ -9,6 +9,16 @@ typedef struct _MilskoPoint {
int y;
} MilskoPoint;
typedef struct _MilskoTextKeyValue {
char* key;
char* value;
} MilskoTextKeyValue;
typedef struct _MilskoIntegerKeyValue {
char* key;
int value;
} MilskoIntegerKeyValue;
typedef struct _MilskoClass* MilskoClass;
#ifdef _MILSKO
@@ -21,6 +31,9 @@ typedef struct _Milsko {
HMILSKO parent;
HMILSKO* children;
MilskoClass class;
MilskoTextKeyValue* text;
MilskoIntegerKeyValue* integer;
}* HMILSKO;
#else
typedef void* HMILSKO;