I downloaded the latest source code from GitHub. I didn't make any changes to it. I opened it in Lazarus 2.0.10 r63526 and compiled all three modes. It gave lots of warnings but compiled all three successfully. The application opens just fine but when I try to hook it to anything the Lua Engine just says "fuck". Am I missing something? Are there settings in Lazarus I need to change?
Joined: 25 Jan 2006 Posts: 8579 Location: 127.0.0.1
Posted: Thu Sep 24, 2020 1:48 pm Post subject:
The Mono script in the autorun folder will output this if it fails to call the original onProcessOpened function:
Code:
function mono_OnProcessOpened(processid, processhandle, caption)
--call the original onOpenProcess if there was one
if mono_OldOnProcessOpened~=nil then
mono_OldOnProcessOpened(processid, processhandle, caption)
else
print("fuck")
end
mono_OpenProcessMT()
end
That is set inside of 'mono_initialize'. Which should be force-called when the script first runs while auto-loading. _________________
Ok so instead of using the latest source code, I tried the 7.1 release version. When I did that I was able to compile the 32 bit version but ran into a problem with the 64 bit version like others have posted about. Unfortunately the solution is to use the latest source code which seems to have an issue somewhere. Can someone else try compiling the latest source code and see if it works for you?
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum