Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- { Add this one for plugin.dll:
- function Test1: Integer; callconv
- begin
- for Result := 0 to 10 do
- ;
- end;
- }
- // {$loadlib plugin.dll} // Uncomment this line
- function Test2: Integer; // Run this one from Simba.
- begin
- for Result := 0 to 10 do
- ;
- end;
- begin
- WriteLn(Test1);
- WriteLn(Test2);
- end.
Advertisement
Add Comment
Please, Sign In to add comment