3 instantiations of HWINEVENTHOOK
System.Windows.Forms.Primitives (3)
Windows.Win32.HWINEVENTHOOK.g.cs (3)
43 public static explicit operator HWINEVENTHOOK(void* value) => new HWINEVENTHOOK(value); 59 public static explicit operator HWINEVENTHOOK(IntPtr value) => new HWINEVENTHOOK((void*)value.ToPointer()); 61 public static explicit operator HWINEVENTHOOK(UIntPtr value) => new HWINEVENTHOOK((void*)value.ToPointer());
21 references to HWINEVENTHOOK
System.Windows.Forms (5)
System\Windows\Forms\Accessibility\LabelEditNativeWindow.cs (5)
15private HWINEVENTHOOK _valueChangeHook; 16private HWINEVENTHOOK _textSelectionChangedHook; 20HWINEVENTHOOK hWinEventHook, 45var functionPointer = (delegate* unmanaged[Stdcall]<HWINEVENTHOOK, uint, HWND, int, int, uint, uint, void>) 118private void WinEventProcCallback(HWINEVENTHOOK hWinEventHook, uint eventId, HWND hwnd, int idObject, int idChild, uint idEventThread, uint dwmsEventTime)
System.Windows.Forms.Primitives (16)
Windows.Win32.HWINEVENTHOOK.g.cs (13)
27 : IEquatable<HWINEVENTHOOK> 37 internal static HWINEVENTHOOK Null => default; 41 public static implicit operator void*(HWINEVENTHOOK value) => value.Value; 43 public static explicit operator HWINEVENTHOOK(void* value) => new HWINEVENTHOOK(value); 45 public static bool operator ==(HWINEVENTHOOK left, HWINEVENTHOOK right) => left.Value == right.Value; 47 public static bool operator !=(HWINEVENTHOOK left, HWINEVENTHOOK right) => !(left == right); 49 public bool Equals(HWINEVENTHOOK other) => this.Value == other.Value; 51 public override bool Equals(object obj) => obj is HWINEVENTHOOK other && this.Equals(other); 57 public static implicit operator IntPtr(HWINEVENTHOOK value) => new IntPtr(value.Value); 59 public static explicit operator HWINEVENTHOOK(IntPtr value) => new HWINEVENTHOOK((void*)value.ToPointer()); 61 public static explicit operator HWINEVENTHOOK(UIntPtr value) => new HWINEVENTHOOK((void*)value.ToPointer());
Windows.Win32.PInvoke.USER32.dll.g.cs (3)
3643 internal static extern winmdroot.Foundation.BOOL UnhookWinEvent(winmdroot.UI.Accessibility.HWINEVENTHOOK hWinEventHook); 3687 internal static extern unsafe winmdroot.UI.Accessibility.HWINEVENTHOOK SetWinEventHook(uint eventMin, uint eventMax, winmdroot.Foundation.HMODULE hmodWinEventProc, delegate *unmanaged[Stdcall]<global::Windows.Win32.UI.Accessibility.HWINEVENTHOOK,uint,global::Windows.Win32.Foundation.HWND,int,int,uint,uint,void> pfnWinEventProc, uint idProcess, uint idThread, uint dwFlags);