mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
be864d9d6e
svn path=/trunk/; revision=26807
25 lines
427 B
C
25 lines
427 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];
|
|
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;
|
|
};
|