aboutsummaryrefslogblamecommitdiffstats
path: root/Game/Code/MacOSX/Wrapper/zlportio.pas
blob: 92b4a505fff66dec1bab1b9595a2d32a09a9e4e7 (plain) (tree)
1
2
3

               
                  



























                                                               
unit zlportio;

{$I switches.inc}

interface

uses GlueWindows;

    procedure zlioportwrite( const Port,DataType,Data:dword );
    procedure portwriteb( const Port:Dword;const Data:byte );
    function  GetTime : Real;

implementation

uses SysUtils;

procedure zlioportwrite( const Port,DataType,Data:dword );
begin
end;

procedure portwriteb( const Port:Dword;const Data:byte );
begin
end;

function  GetTime : Real;
begin
    Result := Now;
end;

end.