Process Hacker
iosupp.h
Go to the documentation of this file.
1 #ifndef _PH_IOSUPP_H
2 #define _PH_IOSUPP_H
3 
5  _In_ PVOID Object,
6  _In_ ULONG Flags
7  );
8 
10  _Inout_ PPH_FILE_STREAM FileStream
11  );
12 
13 NTSTATUS PhpReadFileStream(
14  _Inout_ PPH_FILE_STREAM FileStream,
15  _Out_writes_bytes_(Length) PVOID Buffer,
16  _In_ ULONG Length,
17  _Out_opt_ PULONG ReadLength
18  );
19 
20 NTSTATUS PhpWriteFileStream(
21  _Inout_ PPH_FILE_STREAM FileStream,
22  _In_reads_bytes_(Length) PVOID Buffer,
23  _In_ ULONG Length
24  );
25 
26 NTSTATUS PhpFlushReadFileStream(
27  _Inout_ PPH_FILE_STREAM FileStream
28  );
29 
31  _Inout_ PPH_FILE_STREAM FileStream
32  );
33 
34 NTSTATUS PhpSeekFileStream(
35  _Inout_ PPH_FILE_STREAM FileStream,
36  _In_ PLARGE_INTEGER Offset,
37  _In_ PH_SEEK_ORIGIN Origin
38  );
39 
40 #endif