Process Hacker
memsrch.h
Go to the documentation of this file.
1 #ifndef PH_MEMSRCH_H
2 #define PH_MEMSRCH_H
3 
4 typedef struct _PH_MEMORY_RESULT
5 {
7  PVOID Address;
8  SIZE_T Length;
11 
13  _In_ _Assume_refs_(1) PPH_MEMORY_RESULT Result,
14  _In_opt_ PVOID Context
15  );
16 
17 #define PH_DISPLAY_BUFFER_COUNT (PAGE_SIZE * 2 - 1)
18 
20 {
21  BOOLEAN Cancel;
23  PVOID Context;
25 
27 {
29 
31  BOOLEAN DetectUnicode;
34 
36  _In_ SIZE_T Size
37  );
38 
40  _In_ _Post_invalid_ PVOID Memory
41  );
42 
44  _In_ PVOID Address,
45  _In_ SIZE_T Length
46  );
47 
49  _In_ PPH_MEMORY_RESULT Result
50  );
51 
53  _In_ PPH_MEMORY_RESULT Result
54  );
55 
57  _In_reads_(NumberOfResults) PPH_MEMORY_RESULT *Results,
58  _In_ ULONG NumberOfResults
59  );
60 
61 #endif