private static extern int Unmanaged_GetSystemInfo(ref SystemInfoStruct systemInfoData);
public static extern void GetSystemInfo(out SystemInfoStruct lpSystemInfo);
public int iV_GetSystemInfo(ref SystemInfoStruct systemInfo) { return(Unmanaged_GetSystemInfo(ref systemInfo)); }
public static extern int GetSystemInfo(ref SystemInfoStruct systemInfo);
public int iV_GetSystemInfo(ref SystemInfoStruct systemInfo) { return Unmanaged_GetSystemInfo(ref systemInfo); }