mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-04 16:15:25 +00:00
111027b902
Parsing the new format of the Comfig.ini file.
14 lines
329 B
C
14 lines
329 B
C
typedef struct s_component {
|
|
CString archive;
|
|
CString compname;
|
|
CString name;
|
|
CString desc;
|
|
BOOL selected;
|
|
BOOL invisible;
|
|
BOOL launchapp;
|
|
BOOL additional;
|
|
} COMPONENT;
|
|
|
|
extern "C" __declspec(dllexport)
|
|
int BuildComponentList(COMPONENT *comps, CString compString, int& compNum, CString iniSrcPath,int invisibleCount);
|