mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
c1b8eb8401
attributes for Viewpoint (r=smeredith)
24 lines
466 B
C
24 lines
466 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 supersede;
|
|
BOOL ignoreerror;
|
|
BOOL visible;
|
|
BOOL empty;
|
|
|
|
} COMPONENT;
|
|
|
|
extern "C" __declspec(dllexport)
|
|
int BuildComponentList(COMPONENT *comps, int *compNum, CString iniSrcPath,int invisibleCount);
|