DrawAnimatedRects function user32

int DrawAnimatedRects(
  1. int hwnd,
  2. int idAni,
  3. Pointer<RECT> lprcFrom,
  4. Pointer<RECT> lprcTo
)

Animates the caption of a window to indicate the opening of an icon or the minimizing or maximizing of a window.

BOOL DrawAnimatedRects(
  HWND       hwnd,
  int        idAni,
  const RECT *lprcFrom,
  const RECT *lprcTo);

Implementation

int DrawAnimatedRects(
        int hwnd, int idAni, Pointer<RECT> lprcFrom, Pointer<RECT> lprcTo) =>
    _DrawAnimatedRects(hwnd, idAni, lprcFrom, lprcTo);