No need to define __USE_W32API
[reactos.git] / rosapps / 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 struct Application* Next;
12 };
13
14 struct Category
15 {
16 WCHAR Name[0x100];
17 //WCHAR Description[0x100];
18 int Icon;
19 HANDLE TreeviewItem;
20 struct Application* Apps;
21 struct Category* Next;
22 struct Category* Children;
23 struct Category* Parent;
24 };