Sorry for the delay.
Your new example works also fine here, however, this is what i'm trying to do:
#compiler_plugin_funcs = FileHash
Dim $fileName=FileOpenDialog("",".\", "All (*.*)")
Dim $md5File
Dim $plHND = PluginOpen("f-shash.dll")
$md5File = FileHash($fileName)
if @error > 0 Then MsgBox(0, "error", @error)
MsgBox(0, "Test File", $fileName & @LF & "File Hash: " & $md5File)
PluginClose($plHND)
I feed a *variable* containing the full path to FileHash. It seems to work fine if the file is in the same directory as the *DLL* (or a copy of it for that matter), but fails when it's not. Here is the console output when it's run from SciTE using ALT+F5:
Note that the error is odd: Unknown function name ! (while it works fine with the file beside the DLL)
Also the error terminate the script, no time for displaying the error messagebox.
Finally, using String() on the $fileName variable does not help.