Files
lazarus-ccr/components/virtualtreeview-unstable/units/gtk2/mmsystem.pas
blikblum a7da3fa782 Initial GTK2 support
Started workaround to horizontal scrolling bug

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@146 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2007-04-21 19:56:33 +00:00

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.