reactos/rosapps/downloader/structures.h
Christoph von Wittich a00d6a195f add <Depends> and <PostInstallAction> to be able to install Diablo 2 Shareware with Download!
TODO: write the req. fix which creates a new shortcut with -w -glide
see <PostInstallAction> in the xml file

svn path=/trunk/; revision=31878
2008-01-18 22:23:52 +00:00

27 lines
483 B
C

struct Application
{
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;
};
struct Category
{
WCHAR Name[0x100];
//WCHAR Description[0x100];
int Icon;
HANDLE TreeviewItem;
struct Application* Apps;
struct Category* Next;
struct Category* Children;
struct Category* Parent;
};