###User Defined Function###
_WinAPI_GetTempFileName

###Description###
Creates a name for a temporary file.

###Syntax###
#include <WinAPIFiles.au3>
_WinAPI_GetTempFileName ( $sPath [, $sPrefix = ''] )


###Parameters###
@@ParamTable@@
$sPath
	The directory path for the file name. Applications typically specify a period (.) for the current directory.
$sPrefix
	[optional] The prefix string. The function uses up to the first three characters of this string as the prefix of the
	file name.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success 	The temporary file name.
Failure 	Sets the @error flag to non-zero, call <a href="_WinAPI_GetLastError.htm">_WinAPI_GetLastError()</a> to get extended error information.
@@End@@


###Remarks###
Temporary files whose names have been created by this function are not automatically deleted.


###Related###


###See Also###
@@MsdnLink@@ GetTempFileName
