Thema
:
Delphi
Hilfe bei Übersetzung VB to Delphi
Einzelnen Beitrag anzeigen
EWeiss
(Gast)
n/a Beiträge
#
12
Re: Hilfe bei Übersetzung VB to Delphi
22. Jan 2009, 20:13
markieren
Code:
Public Declare Function VB_GetAFList Lib "USBRadio.dll" (ByRef ary As Single, ByRef size As Long) As Boolean
ByRef ist in Delphi grundsätzlich 'var'
also
TFNGetAFList =
function
(
var
ary:Single;
var
size: Integer):Bool;
stdcall
;
gruss Emil
Zitat