CreateFileMappingA (KERNEL32.@)
HANDLE CreateFileMappingA ( HANDLE hFile, SECURITY_ATTRIBUTES* sa, DWORD protect, DWORD size_high, DWORD size_low, LPCSTR name )
hFile | [In] | Handle of file to map. |
sa | [In] | Optional security attributes. |
protect | [In] | Protection for mapping object. |
size_high | [In] | High-order 32 bits of object size. |
size_low | [In] | Low-order 32 bits of object size. |
name | [In] | Name of file-mapping object. |
Creates a named or unnamed file-mapping object for the specified file.
Handle: Success 0: Mapping object does not exist
NULL: Failure
Defined in "winbase.h".
Implemented in "dlls/kernel/virtual.c". source.winehq.org/source/dlls/kernel/virtual.c
Debug channel "virtual".
Copyright © 2005 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Aug 2005.