3 instantiations of HDWP
System.Windows.Forms.Primitives (3)
_generated\83\Windows.Win32.HDWP.g.cs (3)
41 public static explicit operator HDWP(void* value) => new HDWP(value); 57 public static explicit operator HDWP(IntPtr value) => new HDWP((void*)value.ToPointer()); 59 public static explicit operator HDWP(UIntPtr value) => new HDWP((void*)value.ToPointer());
23 references to HDWP
System.Windows.Forms.Primitives (23)
_generated\426\Windows.Win32.PInvoke.USER32.dll.g.cs (10)
181 internal static winmdroot.UI.WindowsAndMessaging.HDWP BeginDeferWindowPos(int nNumWindows) 184 winmdroot.UI.WindowsAndMessaging.HDWP __retVal = LocalExternFunction(nNumWindows); 189 static extern winmdroot.UI.WindowsAndMessaging.HDWP LocalExternFunction(int nNumWindows); 653 internal static winmdroot.UI.WindowsAndMessaging.HDWP DeferWindowPos(winmdroot.UI.WindowsAndMessaging.HDWP hWinPosInfo, winmdroot.Foundation.HWND hWnd, [Optional] winmdroot.Foundation.HWND hWndInsertAfter, int x, int y, int cx, int cy, winmdroot.UI.WindowsAndMessaging.SET_WINDOW_POS_FLAGS uFlags) 656 winmdroot.UI.WindowsAndMessaging.HDWP __retVal = LocalExternFunction(hWinPosInfo, hWnd, hWndInsertAfter, x, y, cx, cy, uFlags); 661 static extern winmdroot.UI.WindowsAndMessaging.HDWP LocalExternFunction(winmdroot.UI.WindowsAndMessaging.HDWP hWinPosInfo, winmdroot.Foundation.HWND hWnd, [Optional] winmdroot.Foundation.HWND hWndInsertAfter, int x, int y, int cx, int cy, winmdroot.UI.WindowsAndMessaging.SET_WINDOW_POS_FLAGS uFlags); 969 internal static winmdroot.Foundation.BOOL EndDeferWindowPos(winmdroot.UI.WindowsAndMessaging.HDWP hWinPosInfo) 977 static extern winmdroot.Foundation.BOOL LocalExternFunction(winmdroot.UI.WindowsAndMessaging.HDWP hWinPosInfo);
_generated\83\Windows.Win32.HDWP.g.cs (13)
25 : IEquatable<HDWP> 35 internal static HDWP Null => default; 39 public static implicit operator void*(HDWP value) => value.Value; 41 public static explicit operator HDWP(void* value) => new HDWP(value); 43 public static bool operator ==(HDWP left, HDWP right) => left.Value == right.Value; 45 public static bool operator !=(HDWP left, HDWP right) => !(left == right); 47 public bool Equals(HDWP other) => this.Value == other.Value; 49 public override bool Equals(object obj) => obj is HDWP other && this.Equals(other); 55 public static implicit operator IntPtr(HDWP value) => new IntPtr(value.Value); 57 public static explicit operator HDWP(IntPtr value) => new HDWP((void*)value.ToPointer()); 59 public static explicit operator HDWP(UIntPtr value) => new HDWP((void*)value.ToPointer());