![]() |
Operator not applicable
Hi
Langsam wirds immer schwiriger :(
Delphi-Quellcode:
Zwei Fehler in einer function.
function GetPresetCount(var pnPresetCount: LongInt): HRESULT;
Var IntVal: integer; begin if (IWmpEffects <> 0) then begin IntVal := 0; result := IWmpEffects.GetPresetCount(IntVal); pnPresetCount := IntVal; end else result := -1; end;
Delphi-Quellcode:
0 normalerweise in C# 'null' wie im MS Beispiel.
if (IWmpEffects <> 0) then
gibt in Delphi den Fehler aus. [Pascal Error] WMPUnit.pas(218): E2015 Operator not applicable to this operand type
Delphi-Quellcode:
laut MS Beispiel IWmpEffects.GetPresetCount(ref IntVal);
IWmpEffects.GetPresetCount(IntVal);
ref dürfte var sein funktioniert aber nicht! Zusätzlich kommt noch die Meldung [Pascal Error] WMPUnit.pas(221): E2018 Record, object or class type required für den bereich (ref IntVal);
Delphi-Quellcode:
Jemand ne Idee was da falsch läuft ?
IWMPEffects = interface(IUnknown)
['{D3984C13-C3CB-48e2-8BE5-5168340B4F35}'] procedure GetPresetCount(var pnPresetCount : LongInt); safecall; Gruss Emil |
Re: Operator not applicable
Delphi ist typensicher, d.h. also, das '0' nicht mit einem Interface kompatibel ist.
Verwende 'nil' oder die Funktion 'Assigned', also:
Delphi-Quellcode:
Und deklariere den Parameter auch als LongInt.
If IInterface <> nil Then
... If Assigned (IInterface) Then ... |
Re: Operator not applicable
Zitat:
Delphi-Quellcode:
geht leider auch nicht
function GetPresetCount(var pnPresetCount: LongInt): HRESULT;
Var IntVal: LongInt; begin If Assigned(IInterface) Then begin IntVal := 0; result := IWmpEffects.GetPresetCount(IntVal); pnPresetCount := IntVal; end else result := -1; end; [Pascal Error] WMPUnit.pas(218): E2008 Incompatible types Das !
Delphi-Quellcode:
gibt den gleiche Fehler zurück wie vorher
If IInterface <> nil Then
[Pascal Error] WMPUnit.pas(218): E2015 Operator not applicable to this operand type Auch das bleibt gleich. [Pascal Error] WMPUnit.pas(221): E2018 Record, object or class type required für den bereich (IntVal); obwohl als LongInt declariert. EDIT: Laut MS; Zitat:
gruss Emil |
Re: Operator not applicable
Liste der Anhänge anzeigen (Anzahl: 1)
Kapiere das nicht..
In c# läufts in Delphi hab ich diverse Probleme gruss Emil |
Re: Operator not applicable
Poste mal den entsprechende c#-Code
|
Re: Operator not applicable
Zitat:
Code:
Ka ob du nur die function meinst..
public int GetPresetCount(ref int count)
{ if (iWmpEffects != null) { int val = 0; int result = iWmpEffects.GetPresetCount(ref val); count = val; return result; } else return -1; } Und ob das reicht. Notfalls könnte ich die ganze Classe senden .. aber nicht den kompletten Quelltext. Sorry gruss Emil |
Re: Operator not applicable
Eweiss: Ich hab doch 'IInterface' nur als Beispiel genommen: Interface-Instanzen sind Zeiger, und Zeiger kann man mit 'nil' vergleichen. IInterface ist aber selbst eine Interface-Deklaration (mein Fehler, ich hätte deinen Variablennamen nehmen sollen, sorry).
Das kompiliert:
Delphi-Quellcode:
Var
x : IInterface; // Also ein I<irgendas>, ein Interface. Begin x:= nil; // Zuweisung auf Nil if x<>nil Then // Abfrage auf nil x := nil; if not assigned (x) then // Abfrage mit Assigned x := nil; End; |
Re: Operator not applicable
Zitat:
Habe mir das schon gedacht aber alle Versionen funktionieren auch dann nicht.
Delphi-Quellcode:
[Pascal Error] WMPUnit.pas(218): E2008 Incompatible types
function GetPresetCount(var count: LongInt): HRESULT;
Var IntVal: LongInt; begin If Assigned(IWmpEffects) Then begin IntVal := 0; result := IWmpEffects.GetPresetCount(IntVal); count := IntVal; end else result := -1; end; Weis jetzt auch nicht weiter. :wall: Gruss Emil |
Re: Operator not applicable
Die Funktion scheint ja einen Zeiger zu erwarten (long* count). Probiere einfach mal, @intval zu übergeben.
|
Re: Operator not applicable
Du mußt es auf eine Instanz und nicht auf das Interface selber anwenden.
|
Re: Operator not applicable
Zitat:
Bei intval mit oder ohne Zeiger [Pascal Error] WMPUnit.pas(221): E2018 Record, object or class type required If Assigned(IWmpEffects) Then [Pascal Error] WMPUnit.pas(218): E2008 Incompatible types If IWmpEffects <> nil Then [Pascal Error] WMPUnit.pas(218): E2015 Operator not applicable to this operand type Arrrrggghhhh :wall: :mrgreen: Gruss Emil |
Re: Operator not applicable
Zitat:
In C# OK da gibts diverse Beispiele an die man sich halten kann. Mit der Instanz verstehe ich jetzt nicht was du da meinst. Gruss Emil |
Re: Operator not applicable
Mir fällt da gerade was auf... in der Interfacedeklaration deines ersten Posts ist GetPresetCount eine Prozedur. Ich vermute stark, dass da die Typinkompatibilität liegt, denn du versuchst ja das nicht vorhandene Ergebnis result zuzuweisen.
Und: hast du eine Instanz(~Variable) deines interfaces? Du rufst die Routine nämlich am interface auf, du musst sie an der Variablen aufrufen. |
Re: Operator not applicable
IWmpEffects ist ein Interface und keine Instanz, die es implemnetiert.
Genausowenig wie du z.B.
Delphi-Quellcode:
schreibst sondern
if Integer = 0
Delphi-Quellcode:
i: integer;
... if i = 0 |
Re: Operator not applicable
Zitat:
Werds mal versuchen ;) gruss Emil |
Re: Operator not applicable
So gehts jetzt bis auf einen Fehler ;)
Delphi-Quellcode:
result := WmpEffects.GetPresetCount(IntVal);
function GetPresetCount(var count: LongInt): HRESULT;
Var IntVal: LongInt; WmpEffects: IWmpEffects; begin If Assigned(WmpEffects) Then begin IntVal := 0; result := WmpEffects.GetPresetCount(IntVal); count := IntVal; end else result := -1; end; [Pascal Error] WMPUnit.pas(222): E2010 Incompatible types: 'HRESULT' and 'procedure, untyped pointer or untyped parameter' Gruss Emil |
Re: Operator not applicable
Delphi-Quellcode:
WmpEffects.GetPresetCount(IntVal);
result := IntVal; |
Re: Operator not applicable
Zitat:
Delphi-Quellcode:
So gehts nun! Vielen Dank an alle die geholfen haben ;)
function GetPresetCount(var count: LongInt): HRESULT;
Var IntVal: LongInt; begin If Assigned(PWmpEffects) Then begin IntVal := 0; PWmpEffects.GetPresetCount(IntVal); result := IntVal; count := IntVal; end else result := -1; end; Aber eine frage noch im Anhang warum geht es nicht über die direkte Abfrage
Delphi-Quellcode:
nur auf deine weise ?
result := PWmpEffects.GetPresetCount(IntVal);
gruss Emil |
Re: Operator not applicable
Ich habe schon mal einen Post dazu geschrieben (#13). In deiner Interfacedeklaration ist getPresetCount eine Prozedur, und die gibt nunmal nichts zurück, das du zuweisen könntest.
|
Re: Operator not applicable
Zitat:
Delphi-Quellcode:
Deshalb wird versucht Result die Methode zuzuweisen, was obigen Fehler auslöst.
IWMPEffects = interface(IUnknown)
['{D3984C13-C3CB-48e2-8BE5-5168340B4F35}'] procedure GetPresetCount(var pnPresetCount : LongInt); safecall; |
Re: Operator not applicable
Zitat:
Logisch nur functionen .. bin total neben der Rolle :wall: ;) Aber das es dann so gelößt wird (Delphi) war mir nicht bekannt. @mkinzler Ok habe es verstanden. gruss Emil |
Alle Zeitangaben in WEZ +1. Es ist jetzt 08:17 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz