You've already forked lazarus-ccr
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.
|
||
|
|