10 references to HCURSOR
System.Private.Windows.Core (10)
Windows\Win32\PInvoke.CopyImage.cs (4)
18public static HCURSOR CopyCursor<T>(T hImage, int cx, int cy, IMAGE_FLAGS flags = default) 19where T : IHandle<HCURSOR> 21HCURSOR result = (HCURSOR)CopyImage(hImage.Handle, GDI_IMAGE_TYPE.IMAGE_CURSOR, cx, cy, flags);
Windows\Win32\UI\WindowsAndMessaging\HCURSOR.cs (6)
6internal partial struct HCURSOR : IHandle<HCURSOR> 8HCURSOR IHandle<HCURSOR>.Handle => this; 9object? IHandle<HCURSOR>.Wrapper => null; 11public static explicit operator HCURSOR(HANDLE handle) => new(handle); 12public static implicit operator HANDLE(HCURSOR handle) => new(handle);