The OpenFileMapping function opens a named file-mapping object.
HANDLE OpenFileMapping(
DWORD dwDesiredAccess, |
// access mode |
BOOL bInheritHandle, |
// inherit flag |
LPCTSTR lpName |
// pointer to name of file-mapping object |
); |
This parameter can be one of the following values:
Value |
Meaning |
FILE_MAP_WRITE |
Read-write access. The target file-mapping object must have been created with PAGE_READWRITE protection. A read-write view of the file is mapped. |
FILE_MAP_READ |
Read-only access. The target file-mapping object must have been created with PAGE_READWRITE or PAGE_READ protection. A read-only view of the file is mapped. |
FILE_MAP_ALL_ACCESS |
Same as FILE_MAP_WRITE. |
FILE_MAP_COPY |
Copy-on-write access. The target file-mapping object must have been created with PAGE_WRITECOPY protection. A copy-on-write view of the file is mapped. |
If the function succeeds, the return value is an open handle to the specified file-mapping object.
If the function fails, the return value is NULL. To get extended error information, call GetLastError.
The handle that OpenFileMapping returns can be used with any function that requires a handle to a file-mapping object.
file: /Techref/os/win/api/win32/func/src/f66_1.htm, 4KB, , updated: 2001/6/24 02:01, local time: 2024/11/5 07:24,
18.191.239.251:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/os/win/api/win32/func/src/f66_1.htm"> OpenFileMapping</A> |
Did you find what you needed? |