mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-28 10:02:14 +00:00
37 lines
424 B
ObjectPascal
37 lines
424 B
ObjectPascal
unit fakemmsystem;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, Types;
|
|
|
|
function timeBeginPeriod(x1: DWord): DWord;
|
|
|
|
function timeEndPeriod(x1: DWord): DWord;
|
|
|
|
function timeGetTime: DWORD;
|
|
|
|
implementation
|
|
|
|
uses
|
|
LCLIntf;
|
|
|
|
function timeBeginPeriod(x1: DWord): DWord;
|
|
begin
|
|
|
|
end;
|
|
|
|
function timeEndPeriod(x1: DWord): DWord;
|
|
begin
|
|
|
|
end;
|
|
|
|
function timeGetTime: DWORD;
|
|
begin
|
|
Result := GetTickCount;
|
|
end;
|
|
|
|
end.
|
|
|