Einzelnen Beitrag anzeigen

EWeiss
(Gast)

n/a Beiträge
 
#1

Operator will wieder nicht!

  Alt 27. Mai 2007, 09:44
Hi

Delphi-Quellcode:
Type EffectsCapability =
   (EFFECT_CANGOFULLSCREEN = $00000001, // can the effect go full screen?
   EFFECT_HASPROPERTYPAGE = $00000002, // does the effect have a property page?
   EFFECT_VARIABLEFREQSTEP = $00000004, // should effect return frequency data with variable size steps?
   EFFECT_WINDOWEDONLY = $00000008,
   EFFECT2_FULLSCREENEXCLUSIVE = $00000010);
Delphi-Quellcode:
Var
   dwCaps : LongInt;
   CanGoFullScreen : boolean;
   WindowedOnly : boolean;
   FullScreenExclusive : boolean;

begin


  if not Assigned(_IWmpEffects) then
  begin
    result := false;
    exit;
  end;

  dwCaps := 0;
  GetCapabilities(dwCaps);

  CanGoFullScreen := (dwCaps and EFFECT_CANGOFULLSCREEN);
Fehler:
Zitat:
[Pascal Error] WMPUnit.pas(1198): E2015 Operator not applicable to this operand type
CanGoFullScreen := (dwCaps and EFFECT_CANGOFULLSCREEN); Warum?

gruss Emil
  Mit Zitat antworten Zitat