.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH MapViewOfFile 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fBMapViewOfFile\fR (KERNEL32.@) .SH SYNOPSIS LPVOID MapViewOfFile ( HANDLE \fImapping\fR, DWORD \fIaccess\fR, DWORD \fIoffset_high\fR, DWORD \fIoffset_low\fR, SIZE_T \fIcount\fR ) .SH DESCRIPTION .PP Maps a view of a file into the address space. .SH PARAMS \fImapping\fR \fB[In]\fR File-\fImapping\fR object to map. .PP \fIaccess\fR \fB[In]\fR Access mode. .PP \fIoffset_high\fR \fB[In]\fR High-order \fB32\fR bits of file offset. .PP \fIoffset_low\fR \fB[In]\fR Low-order \fB32\fR bits of file offset. .PP \fIcount\fR \fB[In]\fR Number of bytes to map. .PP .SH RETURNS .PP \fBSuccess:\fR Starting address of mapped view. .PP \fBFailure:\fR \fBNULL\fR. .SH IMPLEMENTATION .PP Declared in \fB"winbase.h"\fR. .PP Implemented in \fB"dlls/kernel32/virtual.c"\fR.