WinLib.MessageMonitor.DefWindowProc - charonn0/WinLib GitHub Wiki
#WinLib.MessageMonitor.DefWindowProc
##Method Signature
Protected Shared Function DefWindowProc(HWND as Integer, msg as Integer, wParam as Ptr, lParam as Ptr) As Integer
##Notes
This method is the window procedure for all instances of MessageMonitor. This method is a Win32 callback function that is invoked by the system and should not be called by subclasses.
When invoked by the system, this method locates the instance of MessageMonitor to which the window message is addressed and calls the instance WndProc method with the message parameters.
##See also
- WindowMessage event
- WndProc instance method