mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
4ecee92b1a
Merging CCK_IB_BRANCH into trunk reviewed by smeredith@netscape.com, shrutiv@netscape.com
21 lines
415 B
C
21 lines
415 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;
|
|
BOOL uncompress;
|
|
BOOL downloadonly;
|
|
BOOL unselected;
|
|
BOOL empty;
|
|
|
|
} COMPONENT;
|
|
|
|
extern "C" __declspec(dllexport)
|
|
int BuildComponentList(COMPONENT *comps, int *compNum, CString iniSrcPath,int invisibleCount);
|