Janilabo

Untitled

Aug 8th, 2013
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.32 KB | None | 0 0
  1. { Add this one for plugin.dll:
  2. function Test1: Integer; callconv
  3. begin
  4.   for Result := 0 to 10 do
  5.     ;
  6. end;
  7. }
  8.  
  9. // {$loadlib plugin.dll} // Uncomment this line
  10.  
  11. function Test2: Integer; // Run this one from Simba.
  12. begin
  13.   for Result := 0 to 10 do
  14.     ;
  15. end;
  16.  
  17. begin
  18.   WriteLn(Test1);
  19.   WriteLn(Test2);
  20. end.
Advertisement
Add Comment
Please, Sign In to add comment