shrutiv%netscape.com 6c1a2a14ff Fix for bug 84405: Parser for config.ini hardcodes component names (r=tao)
git-svn-id: svn://10.0.0.236/trunk@99559 18797224-902f-48f8-a5cc-f745e15eee43
2001-07-19 02:14:39 +00:00

17 lines
345 B
C

typedef struct s_component {
CString archive;
CString compname;
CString name;
CString desc;
BOOL selected;
BOOL invisible;
BOOL launchapp;
BOOL additional;
BOOL disabled;
BOOL forceupgrade;
} COMPONENT;
extern "C" __declspec(dllexport)
int BuildComponentList(COMPONENT *comps, int *compNum, CString iniSrcPath,int invisibleCount);