mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
a83b12df2b
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2892 21ef857c-d57f-4fe0-8362-d861dc6d29cd
31 lines
608 B
C
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
|