?? systeminfo.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 + -