Files
mirror-processhacker/2.x/trunk/ProcessHacker/include/treelist.h
T
wj32 a83b12df2b show "Unknown" instead of "Static"
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2892 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2010-02-27 09:42:45 +00:00

31 lines
608 B
C

#ifndef TREELIST_H
#define TREELIST_H
#define PH_TREELIST_CLASSNAME L"PhTreeList"
BOOLEAN PhTreeListInitialization();
HWND PhCreateTreeListControl(
__in HWND ParentHandle,
__in INT_PTR Id
);
typedef struct _PH_TREELIST_NODE
{
ULONG Flags;
ULONG NumberOfItems;
PVOID Items[1];
} PH_TREELIST_NODE, *PPH_TREELIST_NODE;
typedef struct _PH_TREELIST_NODE_DISPLAY
{
ULONG Flags;
PPH_TREELIST_NODE Node;
ULONG NumberOfChildren;
struct _PH_TREELIST_NODE_DISPLAY *Children[1];
} PH_TREELIST_NODE_DISPLAY, *PPH_TREELIST_NODE_DISPLAY;
#endif