1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-08-13 16:53:59 -04:00
Simba/Tests/PS/dtmtest.txt
Wizzup? df029c2fd7 More DTM.
git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@104 3f818213-9676-44b0-a9b4-5e4c4e03d09d
2009-10-04 06:37:34 +00:00

25 lines
648 B
Plaintext

program new;
var
dtm,x,y, w, h:integer;
ppdtm:pdtm;
begin
getclientdimensions(w,h);
writeln(inttostr(w) + ',' + inttostr(h));
dtm := DTMFromString('78DA63F4606460F0634001E181810C46401A2' +
'8C3F01F0818AD31D54064612490B601B28209A87105B2A209A8F1' +
'23424D38901540841A2FFC6A00C8100982');
if finddtm(dtm, x,y, 0, 0, w-1,h-1) then
begin
writeln('found');
movemouse(x,y);
end else
writeln('not found');
if getdtm(dtm, ppdtm) then
writeln('yay');
printpdtm(tdtmtopdtm(pdtmtotdtm(ppdtm)));
dtm := addpdtm(ppdtm);
freedtm(dtm);
// old dtm is not freed, since it is overridden by addpdtm.
end.