Process Hacker
cpysave.h
Go to the documentation of this file.
1 #ifndef _PH_CPYSAVE_H
2 #define _PH_CPYSAVE_H
3 
4 #define PH_EXPORT_MODE_TABS 0
5 #define PH_EXPORT_MODE_SPACES 1
6 #define PH_EXPORT_MODE_CSV 2
7 
9  _Out_ PPH_STRING ***Table,
10  _In_ ULONG Rows,
11  _In_ ULONG Columns
12  );
13 
15  _In_ PPH_STRING **Table,
16  _In_ ULONG Rows,
17  _In_ ULONG Columns,
18  _In_ ULONG Mode
19  );
20 
22  _In_ HWND TreeNewHandle,
23  _Out_opt_ PULONG *DisplayToId,
24  _Out_opt_ PWSTR **DisplayToText,
25  _Out_ PULONG NumberOfColumns
26  );
27 
30  _In_ HWND TreeNewHandle,
31  _Reserved_ ULONG Reserved
32  );
33 
36  _In_ HWND TreeNewHandle,
37  _In_ ULONG Mode
38  );
39 
41  _In_ HWND ListViewHandle,
42  _Out_writes_(Count) PULONG DisplayToId,
43  _Out_writes_opt_(Count) PPH_STRING *DisplayToText,
44  _In_ ULONG Count,
45  _Out_ PULONG NumberOfColumns
46  );
47 
49  _In_ HWND ListViewHandle,
50  _In_ INT Index,
51  _In_ INT SubItemIndex
52  );
53 
55  _In_ HWND ListViewHandle
56  );
57 
59  _In_ HWND ListViewHandle,
60  _In_ ULONG Mode
61  );
62 
63 #endif