###User Defined Function###
_WinAPI_FlushViewOfFile

###Description###
Writes to the disk a byte range within a mapped view of a file.

###Syntax###
#include <WinAPIFiles.au3>
_WinAPI_FlushViewOfFile ( $pAddress [, $iBytes = 0] )


###Parameters###
@@ParamTable@@
$pAddress
	A pointer to the base address of the byte range to be flushed to the disk representation of the mapped file.
$iBytes
	[optional] The number of bytes to be flushed. If $iBytes is 0 (Default), the file is flushed from the base address to the
	end of the mapping.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success 	True.
Failure 	False, call <a href="_WinAPI_GetLastError.htm">_WinAPI_GetLastError()</a> to get extended error information
@@End@@


###Remarks###
None


###Related###


###See Also###
@@MsdnLink@@ FlushViewOfFile
