mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-25 02:32:19 -05:00
Added include for extension.
This commit is contained in:
parent
ab6dcc2684
commit
28f642be3f
57
Includes/mml.simba
Normal file
57
Includes/mml.simba
Normal file
@ -0,0 +1,57 @@
|
||||
procedure GetClientDimensions(var w,h : integer);
|
||||
begin
|
||||
Client.IOManager.GetDimensions(w, h);
|
||||
end;
|
||||
|
||||
procedure SetDesktopAsClient;
|
||||
begin
|
||||
Client.IOManager.SetDesktop;
|
||||
end;
|
||||
|
||||
function SetTargetBitmap(bitmap: TMufasaBitmap): integer;
|
||||
begin;
|
||||
result:= Client.IOManager.SetTargetBitmap(Bitmap);
|
||||
end;
|
||||
|
||||
procedure SetImageTarget(idx: integer);
|
||||
begin
|
||||
Client.IOManager.SetImageTarget(idx);
|
||||
end;
|
||||
|
||||
function GetImageTarget: integer;
|
||||
begin
|
||||
Client.IOManager.GetImageTarget(result);
|
||||
end;
|
||||
|
||||
function Freeze: boolean;
|
||||
begin
|
||||
Client.IOManager.SetFrozen(true);
|
||||
result := true; //dunno what the result is supposed to mean
|
||||
end;
|
||||
|
||||
function Unfreeze: boolean;
|
||||
begin
|
||||
Client.IOManager.SetFrozen(false);
|
||||
result := true; //dunno what the result is supposed to mean
|
||||
end;
|
||||
|
||||
function FindDTMs(DTM: Integer; var p: TPointArray; xs, ys, xe, ye: Integer): Boolean;
|
||||
begin
|
||||
with Client do
|
||||
result := MFinder.FindDTMs(MDTMs[DTM], p, xs, ys, xe, ye);
|
||||
end;
|
||||
|
||||
procedure FreeDTM(DTM: Integer);
|
||||
begin
|
||||
Client.MDTMs.FreeDTM(DTM);
|
||||
end;
|
||||
|
||||
function DTMFromString(const DTMString: String): Integer;
|
||||
begin
|
||||
Result := Client.MDTMs.StringToDTM(DTMString);
|
||||
end;
|
||||
|
||||
function AddDTM(const d: TMDTM): Integer;
|
||||
begin
|
||||
Result := Client.MDTMs.AddDTM(d);
|
||||
end;
|
Loading…
Reference in New Issue
Block a user