prop
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@17 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
parent
5170d6c0db
commit
edfa67e964
3 changed files with 39 additions and 4 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue