Hi,
und wie schreib ich dann in den *char??
Code:
void myFunc(char *output);
{
output = "Hello World";
}
Delphi-Quellcode:
procedure myFunc(var output: PChar); stdcall; external DLLName;
[...]
var
output: PChar;
begin
myFunction(output);
ShowMessage(output);
egal ob ich das "var" weglasse oder nicht, ich bekomme nie "Hello World" angezeigt
Aya~