ultimatepp/bazaar/SysInfo/OSwin.c
koldo 58543eeeaa SysInfo: Removed warnings
git-svn-id: svn://ultimatepp.org/upp/trunk@13619 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2019-09-29 16:22:25 +00:00

10 lines
No EOL
299 B
C

#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");
}