2007-03-08 19:00:15 +00:00
|
|
|
|
|
|
|
struct Application
|
|
|
|
{
|
2008-01-21 13:37:05 +00:00
|
|
|
WCHAR Name[0x100];
|
|
|
|
WCHAR RegName[0x100];
|
|
|
|
WCHAR Version[0x100];
|
|
|
|
WCHAR Maintainer[0x100];
|
|
|
|
WCHAR Licence[0x100];
|
|
|
|
WCHAR Description[0x400];
|
|
|
|
WCHAR Location[0x100];
|
|
|
|
WCHAR Depends[0x100];
|
|
|
|
WCHAR PostInstallAction[0x100];
|
|
|
|
struct Application* Next;
|
2007-03-08 19:00:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Category
|
|
|
|
{
|
2008-01-21 13:37:05 +00:00
|
|
|
WCHAR Name[0x100];
|
|
|
|
//WCHAR Description[0x100];
|
|
|
|
int Icon;
|
|
|
|
HANDLE TreeviewItem;
|
|
|
|
struct Application* Apps;
|
|
|
|
struct Category* Next;
|
|
|
|
struct Category* Children;
|
|
|
|
struct Category* Parent;
|
2007-03-08 19:00:15 +00:00
|
|
|
};
|