NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

NativeMethods.WndProc Delegate

[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.

Parameters [Visual Basic, C#, C++]

The declaration of your event-handling method must have the same parameters as the NativeMethods.WndProc delegate declaration.

Remarks

[To be supplied.]

Requirements

Namespace: System.Core

Assembly: System.dll

See Also

System.Core Namespace