16 references to WndProc
WindowsBase (16)
Base\System\Windows\SplashScreen.cs (1)
51private static NativeMethods.WndProc _defWndProc;
Shared\MS\Win32\HwndSubclass.cs (5)
468NativeMethods.WndProc newWndProc = new NativeMethods.WndProc(SubclassWndProc); 536private void HookWindowProc(IntPtr hwnd, NativeMethods.WndProc newWndProc, IntPtr oldWndProc) 592NativeMethods.WndProc currentWndProc = UnsafeNativeMethods.GetWindowLongWndProc(new HandleRef(this,_hwndAttached)); 705private static NativeMethods.WndProc DefWndProcStub = new NativeMethods.WndProc(DefWndProcWrapper); 727private NativeMethods.WndProc _attachedWndProc;
Shared\MS\Win32\HwndWrapper.cs (1)
107NativeMethods.WndProc initialWndProc = new NativeMethods.WndProc(hwndSubclass.SubclassWndProc);
Shared\MS\Win32\NativeMethodsCLR.cs (1)
3921public WndProc lpfnHook;
Shared\MS\Win32\NativeMethodsOther.cs (1)
769public WndProc lpfnWndProc = null;
Shared\MS\Win32\NativeMethodsSetLastError.cs (4)
138public static extern NativeMethods.WndProc GetWindowLongWndProc(HandleRef hWnd, int nIndex); 147public static extern NativeMethods.WndProc GetWindowLongPtrWndProc(HandleRef hWnd, int nIndex); 168public static extern Int32 SetWindowLongWndProc(HandleRef hWnd, int nIndex, NativeMethods.WndProc dwNewLong); 177public static extern IntPtr SetWindowLongPtrWndProc(HandleRef hWnd, int nIndex, NativeMethods.WndProc dwNewLong);
Shared\MS\Win32\UnsafeNativeMethodsOther.cs (3)
701internal static IntPtr CriticalSetWindowLong(HandleRef hWnd, int nIndex, NativeMethods.WndProc dwNewLong) 808internal static NativeMethods.WndProc GetWindowLongWndProc(HandleRef hWnd) 810NativeMethods.WndProc returnValue = null;