From 7d83afbde53546cea7c24ef0ad56ea17a998353d Mon Sep 17 00:00:00 2001 From: Peter Quiring Date: Mon, 25 Oct 2004 21:48:28 +0000 Subject: [PATCH] Added HF32_DEFAULT and HF32_SHARED values. --- include/tlhelp32.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/tlhelp32.h b/include/tlhelp32.h index d3a73685a2c..b43840ffe33 100644 --- a/include/tlhelp32.h +++ b/include/tlhelp32.h @@ -154,6 +154,9 @@ typedef struct tagHEAPLIST32 DWORD dwFlags; } HEAPLIST32, *PHEAPLIST32, *LPHEAPLIST32; +#define HF32_DEFAULT 1 +#define HF32_SHARED 2 + BOOL WINAPI Heap32ListFirst(HANDLE,LPHEAPLIST32); BOOL WINAPI Heap32ListNext(HANDLE,LPHEAPLIST32); BOOL WINAPI Toolhelp32ReadProcessMemory(DWORD,LPCVOID,LPVOID,SIZE_T,SIZE_T*);