Remove the old rosapps entries
[reactos.git] / rosapps / applications / downloader / structures.h
1
2 struct Application
3 {
4 WCHAR Name[0x100];
5 WCHAR RegName[0x100];
6 WCHAR Version[0x100];
7 WCHAR Maintainer[0x100];
8 WCHAR Licence[0x100];
9 WCHAR Description[0x400];
10 WCHAR Location[0x100];
11 WCHAR Depends[0x100];
12 WCHAR PostInstallAction[0x100];
13 struct Application* Next;
14 };
15
16 struct Category
17 {
18 WCHAR Name[0x100];
19 //WCHAR Description[0x100];
20 int Icon;
21 HANDLE TreeviewItem;
22 struct Application* Apps;
23 struct Category* Next;
24 struct Category* Children;
25 struct Category* Parent;
26 };