mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
13 lines
271 B
C
13 lines
271 B
C
typedef struct s_component {
|
|
CString archive;
|
|
CString compname;
|
|
CString name;
|
|
CString desc;
|
|
BOOL selected;
|
|
BOOL invisible;
|
|
BOOL launchapp;
|
|
} COMPONENT;
|
|
|
|
extern "C" __declspec(dllexport)
|
|
int BuildComponentList(COMPONENT *comps, int *compNum, CString iniSrcPath);
|