###User Defined Function###
_WinAPI_SetFilePointerEx

###Description###
Moves the file pointer of the specified file.

###Syntax###
#include <WinAPIFiles.au3>
_WinAPI_SetFilePointerEx ( $hFile, $iPos [, $iMethod = 0] )


###Parameters###
@@ParamTable@@
$hFile
	Handle to the file.
$iPos
	The number of bytes to move the file pointer. A positive value moves the pointer forward in the
	file and a negative value moves the file pointer backward.
$iMethod
	[optional] The starting point for the file pointer move. This parameter can be one of the following values.
	$FILE_BEGIN (Default)
	$FILE_CURRENT
	$FILE_END
@@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@@ SetFilePointerEx
