mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-31 14:22:38 -06:00
16 lines
No EOL
330 B
C
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 |