You've already forked lazarus-ccr
Started workaround to horizontal scrolling bug git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@146 8e941d3f-bd1b-0410-a28a-d453659cc2b4
35 lines
378 B
ObjectPascal
35 lines
378 B
ObjectPascal
unit mmsystem;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, Types;
|
|
|
|
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
|
|
|
|
end;
|
|
|
|
end.
|
|
|