Hello all,
I have a Problem with Inno-Setup, which will not or can not import my PB-DLL. My DLL is in the current Inno folder. The Setup is build correctly, but when I open the Inno window where my DLL is called, I always get a error that Inno can not import my DLL.
Inno code declaration:
function GetHashCode (sText: String; Code: Integer): String;
external 'GetHashCode@files:Setup.dll stdcall setuponly';
My DLL declaration:
FUNCTION GetHashCode(sText AS STRING, Code AS INTEGER) EXPORT AS STRING
Kindly regards
Detlev
I have a Problem with Inno-Setup, which will not or can not import my PB-DLL. My DLL is in the current Inno folder. The Setup is build correctly, but when I open the Inno window where my DLL is called, I always get a error that Inno can not import my DLL.
Inno code declaration:
function GetHashCode (sText: String; Code: Integer): String;
external 'GetHashCode@files:Setup.dll stdcall setuponly';
My DLL declaration:
FUNCTION GetHashCode(sText AS STRING, Code AS INTEGER) EXPORT AS STRING
Kindly regards
Detlev
Comment