mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-13 18:27:35 +00:00
05aa19f757
To parse Config.ini with additional attributes
17 lines
369 B
C
17 lines
369 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, CString compString, int& compNum, CString iniSrcPath,int invisibleCount);
|