⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 systeminfo.via

📁 用VB6写的真正的32位高级语言可视程序编译器
💻 VIA
字号:
// SystemInfo.lnl

application PE GUI entry main;

include "Windows.inc";

type SYSTEM_INFO {
    dword dwOemID;
    dword dwPageSize;
    dword lpMinimumApplicationAddress;
    dword lpMaximumApplicationAddress;
    dword dwActiveProcessorMask;
    dword dwNumberOfProcessors;
    dword dwProcessorType;
    dword dwAllocationGranularity;
    dword dwReserved;
}

SYSTEM_INFO SI;
string buffer[256];

frame main();
    GetSystemInfo(@SI);
    Format(buffer,
           "dwOemID=%d\ndwPageSize=%d\nNumberOfProcessors=%d\nProcessorType=%d", 
           SI.dwOemID,SI.dwPageSize,SI.dwNumberOfProcessors,SI.dwProcessorType);
    MessageBox(0,buffer,"System.Info",1);
end;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -