jtwspoon Posted November 18, 2014 Posted November 18, 2014 I'm trying to use a simple DLL, compiled by Free Pascal, in an AutoIt script, but using the DLLOpen function always results in -1. I'm sure the path and or name specified for the DLL file as the argument to DLLOpen is not the problem. I suspect that DLL's compiled with Free Pascal (or maybe other Pascal's, too) are not usable by AutoIt. If so, are there any workarounds? Suggestions?
Moderators SmOke_N Posted November 18, 2014 Moderators Posted November 18, 2014 Did you try registering the dll then using dllopen? This of course is a guess, no code, no dll, no operating system, leads to nothing but guessing. Mobius 1 Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
jtwspoon Posted November 18, 2014 Author Posted November 18, 2014 I tried to register as you suggested, but get this message: The module "cccrashminmax.dll" was loaded but the entrypoint DllRegisterServer was not found. Make sure that "cccrashminmax.dll" is a valid DLL or OCX file and then try again. OK, how can I make sure that it is a valid DLL file? It compiles without error using Free Pascal to produce the .dll file.
Moderators SmOke_N Posted November 18, 2014 Moderators Posted November 18, 2014 That sounds like like a question for their forum?? I've never used "Free Pascal". Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
JohnOne Posted November 18, 2014 Posted November 18, 2014 You should begin by posting the dll code. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
Yashied Posted November 19, 2014 Posted November 19, 2014 I hope that the bitness of your DLL is the same as running script? My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
jtwspoon Posted November 19, 2014 Author Posted November 19, 2014 Thanks for the helpful suggestions. I have verified that I am trying to load a valid DLL. The DLL works fine when its functions are called by a test Free Pascal program. But it still won't load using either the 64 bit version or 32 bit version of autoit.
jtwspoon Posted November 19, 2014 Author Posted November 19, 2014 Here is the auoit code: #requireadmin ; run as administrator $hdll = DllOpen("user32.dll") ; works msgbox(0,"user32",@error & " " & $hdll) $hdlla = DllOpen("minmax.dll") ; does not work msgbox(0,"minmax",@error & " " & $hdlla) minmax.dll is in the same directory as this auotit script. minmax.dll is a very simple valid workable dll compiled in Free Pascal (64 bit) under Windows 7. The DLLOpen error occurs when run under both the 64 bit and 32 bit versions of autoit under Windows 7.
bogQ Posted November 19, 2014 Posted November 19, 2014 (edited) according to post found on forum.lazarus using MyDLL.dll from that post on func MyAddFunction from that dll.If that dll is compiled using Free Pascal, then autoit works with no problem i think... if i understud code from that files correctly on that post ofc #include <Array.au3> $dll = DllOpen('MyDLL.dll');dll is located next to script, btw im running 32 bit just for your info :P $r = DllCall($dll,'uint','MyAddFunction','uint',2,'uint',3);func shud return sum of first and second parametar in arraye[0] (first array element) If @error Then MsgBox(0,'',@error) _ArrayDisplay($r);returning resultAnd if thats the case then you have problems with Pascal side of your code (coding) and not with autoit, or you have problems with 32 vs 64. Edited November 19, 2014 by bogQ TCP server and client - Learning about TCP servers and clients connectionAu3 oIrrlicht - Irrlicht projectAu3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related) There are those that believe that the perfect heist lies in the preparation.Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.
jtwspoon Posted November 19, 2014 Author Posted November 19, 2014 I can't find the source code for mydll.dll posted on forum.lazarus, so I can't compile it. But mydllo.dll posted won't load with dllopen in autoit. May have to recompile it in 64 bit.
bogQ Posted November 19, 2014 Posted November 19, 2014 (edited) Dont know what is mydllo.dllbut for me MyDLL.dll works correctly when i test it with the script i posted,if it dont work for you try to put this line on top of my script to see will MyDLL.dll work for you#AutoIt3Wrapper_usex64=ni do not know if this directive need full scite version from autoit site, but its allwayes good to instal full scite version.That shud force not to use 64 in this caseAsk ChrisF on that forum, is mydll.dll compiled with Free Pascal.If it is ask him if they can provide you with its source, then youl have your answer... Edited November 19, 2014 by bogQ TCP server and client - Learning about TCP servers and clients connectionAu3 oIrrlicht - Irrlicht projectAu3impact - Another 3D DLL game engine for autoit. (3impact 3Drad related) There are those that believe that the perfect heist lies in the preparation.Some say that it’s all in the timing, seizing the right opportunity. Others even say it’s the ability to leave no trace behind, be a ghost.
Yashied Posted November 20, 2014 Posted November 20, 2014 Try this: #Include <WinAPI.au3> $hDll = _WinAPI_LoadLibrary('minmax.dll') If Not $hDll Then ConsoleWrite($hDll & ' - ' & _WinAPI_GetLastError() & @CR) Else ConsoleWrite($hDll & ' - ' & '0' & @CR) EndIf My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
Solution jtwspoon Posted November 20, 2014 Author Solution Posted November 20, 2014 I have now identified corrections to my dll to allow it to load with DLLOpen using the 32 bit version of autoit. However, it appears that loading with DLLOpen produces a different type of handle than loading as you suggest with _WinAPI_LoadLibrary, which also works. With DLLOpen, it appears that the handle returned is simply an ordinal integer for the number of Dll's that have been opened. For example if two DLL's have already been opened, then $hdll = DLLOpen("mydll.dll") will result in a value of 3 for $hdll. That is quite different from the handle returned by _WinAPI_LoadLibrary. If I try to use DLLCall, whether with the handle retrieved by DLLOpen or directly using the dll filename, the autoitscript crashes --- i.e. the script exits before ever getting to the next line in the script, so can't even check for the type error that might have occurred.
jtwspoon Posted November 20, 2014 Author Posted November 20, 2014 Have now found the reason for script crashing on DLLCall ---- need to specify stdcall for each function in the DLL. Doing this fixed the crashing problem.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now