Group: System Information - Library: kernel32
Retrieves the path of the system directory used by WOW64. This directory is not present on 32-bit Windows.
UINT WINAPI GetSystemWow64Directory(
__out LPTSTR lpBuffer,
__in UINT uSize
); DECLARE INTEGER GetSystemWow64Directory IN kernel32;
STRING @lpBuffer,;
LONG uSize 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.
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.
Example: C:\Windows\SysWOW64
WoW64 means Windows-on-Windows 64-bit.
See also: GetSystemDirectory.
Home