DwmGetColorizationColor function dwmapi

int DwmGetColorizationColor(
  1. Pointer<Uint32> pcrColorization,
  2. Pointer<Int32> pfOpaqueBlend
)

Retrieves the current color used for Desktop Window Manager (DWM) glass composition. This value is based on the current color scheme and can be modified by the user. Applications can listen for color changes by handling the WM_DWMCOLORIZATIONCOLORCHANGED notification.

DWMAPI DwmGetColorizationColor(
  DWORD *pcrColorization,
  BOOL  *pfOpaqueBlend
);

Implementation

int DwmGetColorizationColor(
        Pointer<Uint32> pcrColorization, Pointer<Int32> pfOpaqueBlend) =>
    _DwmGetColorizationColor(pcrColorization, pfOpaqueBlend);