GetMappedFileName function kernel32
int
GetMappedFileName(
- int hProcess,
- Pointer<
NativeType> lpv, - Pointer<
Utf16> lpFilename, - int nSize,
Checks whether the specified address is within a memory-mapped file in the address space of the specified process. If so, the function returns the name of the memory-mapped file.
DWORD K32GetMappedFileNameW(
[in] HANDLE hProcess,
[in] LPVOID lpv,
[out] LPWSTR lpFilename,
[in] DWORD nSize
);
Implementation
int GetMappedFileName(
int hProcess, Pointer lpv, Pointer<Utf16> lpFilename, int nSize) =>
_K32GetMappedFileName(hProcess, lpv, lpFilename, nSize);