1999-11-05 19:18:33 +00:00
|
|
|
typedef struct s_component {
|
|
|
|
CString archive;
|
|
|
|
CString compname;
|
|
|
|
CString name;
|
|
|
|
CString desc;
|
|
|
|
BOOL selected;
|
|
|
|
BOOL invisible;
|
|
|
|
BOOL launchapp;
|
2001-07-19 02:14:39 +00:00
|
|
|
BOOL additional;
|
|
|
|
BOOL disabled;
|
2001-11-08 23:58:42 +00:00
|
|
|
BOOL forceupgrade;
|
|
|
|
BOOL uncompress;
|
2001-09-11 00:45:57 +00:00
|
|
|
BOOL downloadonly;
|
2001-11-08 23:58:42 +00:00
|
|
|
BOOL unselected;
|
|
|
|
BOOL empty;
|
2001-09-29 01:51:57 +00:00
|
|
|
|
1999-11-05 19:18:33 +00:00
|
|
|
} COMPONENT;
|
|
|
|
|
1999-11-06 00:04:08 +00:00
|
|
|
extern "C" __declspec(dllexport)
|
2001-07-19 02:14:39 +00:00
|
|
|
int BuildComponentList(COMPONENT *comps, int *compNum, CString iniSrcPath,int invisibleCount);
|