Library:user32.dll
Visual Basic .NET definition
|
Declare Function BroadcastSystemMessage Lib "user32" (ByVal dw As Integer, ByRef pdw As Integer, ByVal un As Integer, ByVal wParam As Integer, ByVal lParam As Integer) As Integer
|
C# definition
|
[DllImport("user32")]
public static extern int BroadcastSystemMessage(int dw, ref int pdw, int un, int wParam, int lParam)
|
Further Information:
For further information on Windows API functions such as these, and how to use these API's in your
C# and VB.NET applications, please refer to the book 'Network programming in .NET' (Buy at Amazon UK)
(Buy at Amazon US)
Visual Basic 6 example source code
C# example source code
Provide a code example