Skip to content

Latest commit

 

History

History
53 lines (35 loc) · 1.2 KB

File metadata and controls

53 lines (35 loc) · 1.2 KB

Home

Function name : GetSystemWow64Directory

Group: System Information - Library: kernel32


Retrieves the path of the system directory used by WOW64. This directory is not present on 32-bit Windows.


Declaration:

UINT WINAPI GetSystemWow64Directory(
  __out  LPTSTR lpBuffer,
  __in   UINT uSize
);  

FoxPro declaration:

DECLARE INTEGER GetSystemWow64Directory IN kernel32;
	STRING @lpBuffer,;
	LONG uSize  

Parameters:

lpBuffer [out] A pointer to the buffer to receive the path. This path does not end with a backslash.

uSize [in] The maximum size of the buffer, in TCHARs.


Return value:

If the function succeeds, the return value is the length, in TCHARs, of the string copied to the buffer, not including the terminating null character.


Comments:

Example: C:\Windows\SysWOW64

WoW64 means Windows-on-Windows 64-bit.

See also: GetSystemDirectory.