You've already forked lazarus-ccr
Added dummy MMSystem unit to linux/gtk
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@127 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
34
components/virtualtreeview-unstable/units/gtk/mmsystem.pas
Normal file
34
components/virtualtreeview-unstable/units/gtk/mmsystem.pas
Normal file
@ -0,0 +1,34 @@
|
||||
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.
|
||||
|
Reference in New Issue
Block a user