2001-12-18 02:07:47 +03:00
|
|
|
typedef struct s_component {
|
|
|
|
CString archive;
|
|
|
|
CString compname;
|
|
|
|
CString name;
|
|
|
|
CString desc;
|
|
|
|
BOOL selected;
|
|
|
|
BOOL invisible;
|
|
|
|
BOOL launchapp;
|
|
|
|
BOOL additional;
|
|
|
|
BOOL disabled;
|
|
|
|
BOOL forceupgrade;
|
|
|
|
BOOL uncompress;
|
|
|
|
BOOL downloadonly;
|
|
|
|
BOOL unselected;
|
2002-07-13 03:48:13 +04:00
|
|
|
BOOL supersede;
|
|
|
|
BOOL ignoreerror;
|
|
|
|
BOOL visible;
|
2001-12-18 02:07:47 +03:00
|
|
|
BOOL empty;
|
|
|
|
|
|
|
|
} COMPONENT;
|
|
|
|
|
|
|
|
extern "C" __declspec(dllexport)
|
|
|
|
int BuildComponentList(COMPONENT *comps, int *compNum, CString iniSrcPath,int invisibleCount);
|