Registriert seit: 16. Jan 2004
Ort: Bendorf
5.219 Beiträge
Delphi 10.2 Tokyo Professional
|
AW: Mal wieder C++ DLL & Delphi
2. Jan 2020, 13:33
Du musst Speicher für die Rückgabe reservieren.
Delphi-Quellcode:
var info: Array[0..255] of AnsiChar; // Hab mal 256 Bytes genommen. Musst mal schauen wie viel du ca. brauchst.
begin
FillChar(info, SizeOf(info), 0);
GetDevInfo(@info[0]);
ShowMessage(info);
end;
Michael "Programmers talk about software development on weekends, vacations, and over meals not because they lack imagination,
but because their imagination reveals worlds that others cannot see."
|