###User Defined Function###
_WinAPI_GlobalMemoryStatus

###Description###
Retrieves information about current available memory

###Syntax###
#include <WinAPI.au3>
_WinAPI_GlobalMemoryStatus (  )


###Parameters###
None.

###ReturnValue###
@@ReturnTable@@
Success:	Array with the following format:
	$aMem[0] - Percent of Mem in use
	$aMem[1] - Physical Mem: Total
	$aMem[2] - Physical Mem: Free
	$aMem[3] - Paging file: Total
	$aMem[4] - Paging file: Free
	$aMem[5] - User Mem: Total
	$aMem[6] - User Mem: Free
Failure:	Sets the @error flag to non-zero, call <a href="_WinAPI_GetLastError.htm">_WinAPI_GetLastError()</a> to get extended error information
@@End@@


###Remarks###
Unlike the AutoIt MemGetStats() function, this function returns the values in bytes


###Related###


###See Also###
@@MsdnLink@@ GlobalMemoryStatusEx
