This commit is contained in:
parent
efd1d32801
commit
120eb5baaf
14 changed files with 405 additions and 44 deletions
|
|
@ -30,6 +30,8 @@ typedef struct _MwBox* MwBox;
|
|||
typedef struct _MwSubWindow* MwSubWindow;
|
||||
typedef struct _MwTab* MwTab;
|
||||
typedef struct _MwTable* MwTable;
|
||||
typedef struct _MwChartEntry MwChartEntry;
|
||||
typedef struct _MwChart* MwChart;
|
||||
typedef struct _MwMouse MwMouse;
|
||||
typedef struct _MwTTFInfo* MwTTFInfo;
|
||||
#ifdef _MILSKO
|
||||
|
|
@ -247,6 +249,16 @@ struct _MwTab {
|
|||
char** names;
|
||||
};
|
||||
|
||||
struct _MwChartEntry {
|
||||
char* name;
|
||||
char* color;
|
||||
double value;
|
||||
};
|
||||
|
||||
struct _MwChart {
|
||||
MwChartEntry* entries;
|
||||
};
|
||||
|
||||
struct _MwMouse {
|
||||
MwPoint point;
|
||||
int button;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue