 |
GetSystemWow64Directory ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
Retrieves the path of the system directory used by WOW64. This directory is not present on 32-bit Windows. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| 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. |
 |
 |
| Usage: |
 |
LOCAL nBufsize, cBuffer
nBufsize = 250
cBuffer = REPLICATE(CHR(0), nBufsize)
nBufsize = GetSystemWow64Directory(@cBuffer, nBufsize)
? "["+SUBSTR(cBuffer, 1, nBufsize)+"]"
|
 |
 |
| My comment: |
 |
Example: C:\Windows\SysWOW64
WoW64 means Windows-on-Windows 64-bit.
See also: GetSystemDirectory |
 |
 |
| Word Index links for the GetSystemWow64Directory : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2009-01-07 13:40:17 | | Modified: | 2009-01-07 13:44:58 | Visited in last 7 days: 13 |