Registriert seit: 10. Jun 2003
Ort: Berlin
9.648 Beiträge
Delphi 11 Alexandria
|
AW: E2232 Interface 'x' besitzt keine Interface-Identifikation?
20. Jul 2015, 15:03
Warum eigentlich so kompliziert? Warum nicht einfach so:
Delphi-Quellcode:
type
IMyIntfA = Interface(IUnknown)
['{23D5751F-8368-4672-ACFC-3BF667F1F544}']
procedure foo;
end;
// so gibts ein Interface
if LMy.QueryInterface(IMyIntfA, LIMyA) = S_OK then
// oder
if Supports(LMy, IMyIntfA, LIMyA) then
|