Registriert seit: 26. Aug 2004
Ort: Nebel auf Amrum
3.154 Beiträge
Delphi 7 Enterprise
|
Re: zugriff auf array einer function in Typelibrary
14. Jan 2005, 20:45
Moin,
habe folgendes gefunden...
Delphi-Quellcode:
tSAFEARRAYBOUND = record
cElements:LongInt;
lLbound:LongInt;
end;
PSafeArray = ^TSafeArray;
{$EXTERNALSYM tagSAFEARRAY}
tagSAFEARRAY = record
cDims: Word;
fFeatures: Word;
cbElements: Longint;
cLocks: Longint;
pvData: Pointer;
rgsabound: array[0..0] of TSafeArrayBound;
end;
TSafeArray = tagSAFEARRAY;
{$EXTERNALSYM SAFEARRAY}
SAFEARRAY = TSafeArray;
Vielleicht hilft dir das
MfG
Thorsten
|