Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Object-Pascal / Delphi-Language (https://www.delphipraxis.net/32-object-pascal-delphi-language/)
-   -   Delphi UpdateLayeredWindow (https://www.delphipraxis.net/83053-updatelayeredwindow.html)

delphinia 26. Dez 2006 13:54


UpdateLayeredWindow
 
Hallo,

ich nutzte D5 und habe nun SourceCode gefunden wo "UpdateLayeredWindow" benutzt wird... nur kennt mein Delphi das nicht?!
Wo finde ich diese Function?

xaromz 26. Dez 2006 14:48

Re: UpdateLayeredWindow
 
Hallo,

diese Funktion ist in Deinem Delphi noch nicht definiert. Das musst Du selbst machen:
Delphi-Quellcode:
type
  PBlendFunction = ^TBlendFunction;

  _BLENDFUNCTION = packed record
    BlendOp: BYTE;
    BlendFlags: BYTE;
    SourceConstantAlpha: BYTE;
    AlphaFormat: BYTE;
  end;

  TBlendFunction = _BLENDFUNCTION;

function UpdateLayeredWindow(Handle: THandle; hdcDest: HDC; pptDst: PPoint; _psize: PSize;
  hdcSrc: HDC; pptSrc: PPoint; crKey: COLORREF; pblend: PBLENDFUNCTION; dwFlags: DWORD): Boolean; stdcall; external 'user32.dll' name 'UpdateLayeredWindow';
Gruß
xaromz


Alle Zeitangaben in WEZ +1. Es ist jetzt 06:19 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