I have a dll library. I excluded the memory block for delphi types.
So what would be the appropriate type Booleanto declare a function?
Is it BOOLor something else?
The problem is that in the method signature:
function Test(Param1: BOOL; Param2: BOOL; docContent: PCharArray): Integer;
I get AV when the program leaves this function.
I assume this is a data type problem with these first two parameters.
source
share