上一页 1 2 asm dw 310Fh mov TimerLo, eax mov TimerHi, edx end;
Sleep(DelayTime); asm dw 310Fh sub eax, TimerLo sbb edx, TimerHi mov TimerLo, eax mov TimerHi, edx end;
SetThreadPriority(GetCurrentThread, Priority); SetPriorityClass(GetCurrentProcess, PriorityClass); Result := TimerLo / (1000.0 * DelayTime);
end;
3.获取当前机器的所有物理内存
function GetMemoryTotalPhys : Dword;
var memStatus: TMemoryStatus;
begin memStatus.dwLength := sizeOf ( memStatus ); GlobalMemoryStatus ( memStatus ); Result := memStatus.dwTotalPhys; end; 上一页 1 2 |