ultimatepp/bazaar/SysInfo/OSwin.c
koldo c3c9e0727f *SysInfo: Solved problem in Linux
git-svn-id: svn://ultimatepp.org/upp/trunk@13646 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2019-10-16 05:56:53 +00:00

16 lines
No EOL
330 B
C

#ifdef _WIN32
#include <windows.h>
#include "OSwin.h"
PGNSI Get_GetNativeSystemInfo() {
return (PGNSI)GetProcAddress(GetModuleHandle(TEXT("kernel32.dll")), "GetNativeSystemInfo");
}
PGPI Get_GetProductInfo() {
return (PGPI)GetProcAddress(GetModuleHandle(TEXT("kernel32.dll")), "GetProductInfo");
}
#endif