mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-04 08:00:11 +02:00

OnlinePackageManager: Adapt to the new virtualtreeview package. git-svn-id: trunk@60132 -
35 lines
428 B
ObjectPascal
35 lines
428 B
ObjectPascal
unit laz.FakeMMSystem;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, Types, LCLIntf;
|
|
|
|
function timeBeginPeriod(x1: DWord): DWord;
|
|
|
|
function timeEndPeriod(x1: DWord): DWord;
|
|
|
|
function timeGetTime: DWORD;
|
|
|
|
implementation
|
|
|
|
function timeBeginPeriod(x1: DWord): DWord;
|
|
begin
|
|
//
|
|
end;
|
|
|
|
function timeEndPeriod(x1: DWord): DWord;
|
|
begin
|
|
//
|
|
end;
|
|
|
|
function timeGetTime: DWORD;
|
|
begin
|
|
Result := GetTickCount;
|
|
end;
|
|
|
|
end.
|
|
|