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