2009-12-23 09:00:03 +00:00
|
|
|
unit fakemmsystem;
|
2007-09-10 01:08:08 +00:00
|
|
|
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
2013-09-07 19:08:28 +00:00
|
|
|
Classes, SysUtils, Types, LCLIntf;
|
2007-09-10 01:08:08 +00:00
|
|
|
|
|
|
|
function timeBeginPeriod(x1: DWord): DWord;
|
|
|
|
|
|
|
|
function timeEndPeriod(x1: DWord): DWord;
|
|
|
|
|
|
|
|
function timeGetTime: DWORD;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
function timeBeginPeriod(x1: DWord): DWord;
|
|
|
|
begin
|
2013-09-07 19:08:28 +00:00
|
|
|
//
|
2007-09-10 01:08:08 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
function timeEndPeriod(x1: DWord): DWord;
|
|
|
|
begin
|
2013-09-07 19:08:28 +00:00
|
|
|
//
|
2007-09-10 01:08:08 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
function timeGetTime: DWORD;
|
|
|
|
begin
|
2013-09-07 19:08:28 +00:00
|
|
|
Result := GetTickCount;
|
2007-09-10 01:08:08 +00:00
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|
|
|
|
|