Files
mirror-processhacker/2.x/trunk/ProcessHacker/include/treelistp.h
T
wj32 aacddced22 started tree list control
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2813 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2010-02-10 07:16:55 +00:00

20 lines
363 B
C

#ifndef TREELISTP_H
#define TREELISTP_H
#define PH_TREELIST_HEADER_ID 4000
typedef struct _PHP_TREELIST_CONTEXT
{
HWND Handle;
HWND HeaderHandle;
} PHP_TREELIST_CONTEXT, *PPHP_TREELIST_CONTEXT;
LRESULT CALLBACK PhpTreeListWndProc(
__in HWND hwnd,
__in UINT uMsg,
__in WPARAM wParam,
__in LPARAM lParam
);
#endif