 |
GetNativeSystemInfo ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
Retrieves information about the current system to an application running under WOW64. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
void WINAPI GetNativeSystemInfo(
__out LPSYSTEM_INFO lpSystemInfo
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE GetNativeSystemInfo IN kernel32;
STRING @lpSystemInfo
|
 |
 |
 |
| Parameters: |
 |
lpSystemInfo
A pointer to a SYSTEM_INFO structure that receives the information.
|
 |
 |
| Return value: |
 |
| This function does not return a value. |
 |
 |
| Usage: |
 |
#DEFINE SYSTEM_INFO_SIZE 36
LOCAL cBuffer
cBuffer = REPLICATE(CHR(0), SYSTEM_INFO_SIZE)
= GetNativeSystemInfo(@cBuffer)
|
 |
 |
| My comment: |
 |
If the function is called from a 64-bit application, it is equivalent to the GetSystemInfo function.
See also: GetSystemWow64Directory |
 |
 |
| Word Index links for the GetNativeSystemInfo : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2007-12-26 14:16:20 | | Modified: | 2009-01-07 13:46:50 | Visited in last 7 days: 20 |