2010-01-07 22:49:28 +00:00
|
|
|
unit fakemmsystem;
|
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2011-12-11 13:19:07 +00:00
|
|
|
Classes, SysUtils, Types, LCLIntf;
|
2010-01-07 22:49:28 +00:00
|
|
|
|
|
|
|
function timeBeginPeriod(x1: DWord): DWord;
|
|
|
|
|
|
|
|
function timeEndPeriod(x1: DWord): DWord;
|
|
|
|
|
|
|
|
function timeGetTime: DWORD;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
function timeBeginPeriod(x1: DWord): DWord;
|
|
|
|
begin
|
2011-12-11 13:19:07 +00:00
|
|
|
//
|
2010-01-07 22:49:28 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
function timeEndPeriod(x1: DWord): DWord;
|
|
|
|
begin
|
2011-12-11 13:19:07 +00:00
|
|
|
//
|
2010-01-07 22:49:28 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
function timeGetTime: DWORD;
|
|
|
|
begin
|
2011-12-11 13:19:07 +00:00
|
|
|
Result := GetTickCount;
|
2010-01-07 22:49:28 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|
|
|
|
|