[To be supplied.]
[Visual Basic] Public Delegate Sub NativeMethods.WndProc( _ ByVal hWnd As Integer, _ ByVal msg As Integer, _ ByVal wParam As Integer, _ ByVal lParam As Integer _ ) As Integer [C#] public delegate int NativeMethods.WndProc( int hWnd, int msg, int wParam, int lParam ); [C++] public __gc __delegate int NativeMethods.WndProc( int hWnd, int msg, int wParam, int lParam );
[JScript] In JScript, you can use the delegates in the NGWS frameworks, but you cannot define your own.
The declaration of your event-handling method must have the same parameters as the NativeMethods.WndProc delegate declaration.
[To be supplied.]
Namespace: System.Core
Assembly: System.dll