DrawAnimatedRects

[DllImport("user32.dll", SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)]
public static extern bool DrawAnimatedRects(
   IntPtr hwnd,
   int idAni,
   ref RECT lprcFrom,
   ref RECT lprcTo
);

Microsoft documentation: Link

Last updated