1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-08-13 16:53:59 -04:00
Simba/Projects/MMLLib/libmml.lpr

38 lines
381 B
ObjectPascal
Raw Normal View History

library libmml;
{$mode objfpc}{$H+}
uses
cmem,Classes,interfaces,graphics,client;
{$R *.res}
var
C: TClient;
function test: pchar;
begin
result := PChar('hello world');
end;
procedure init;
begin
C:=TCLient.Create('');
end;
function getmousepos: tpoint;
begin
C.IOManager.GetMousePos(result.x,result.y);
end;
exports
test,
init,
getmousepos;
begin
end.