User32DispatchMessage Method
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("User32.dll", CharSet = CharSet.Auto)]
public static IntPtr DispatchMessage(
in NativeMessage refMsg
)
<DllImportAttribute("User32.dll", CharSet := CharSet.Auto>]
Public Shared Function DispatchMessage (
ByRef refMsg As NativeMessage
) As IntPtr
Dim refMsg As NativeMessage
Dim returnValue As IntPtr
returnValue = User32.DispatchMessage(refMsg)
public:
[DllImportAttribute(L"User32.dll", CharSet = CharSet::Auto)]
static IntPtr DispatchMessage(
[InAttribute] NativeMessage% refMsg
)
[<DllImportAttribute("User32.dll", CharSet = CharSet.Auto)>]
static member DispatchMessage :
refMsg : NativeMessage byref -> IntPtr
No code example is currently available or this language may not be supported.
- refMsg NativeMessage
-
A pointer to a structure that contains the message.
IntPtr
The return value specifies the value returned by the window procedure.
Although its meaning depends on the message being dispatched, the return value generally is ignored.