Subject | Re: FB 1.5 : UDF Access violation (not in FB 1.0) |
---|---|
Author | vs_20100 |
Post date | 2004-03-02T15:47:37Z |
Found it !
I had forgotten "cdecl" :
function GetStrLen(const text:PChar):integer; cdecl;
begin
result := StrLen(text);
end;
why it worked with FB 1.0 is a mystery though....
regards,
Vincent
I had forgotten "cdecl" :
function GetStrLen(const text:PChar):integer; cdecl;
begin
result := StrLen(text);
end;
why it worked with FB 1.0 is a mystery though....
regards,
Vincent