User32ReplyMessage 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", ExactSpelling = true, SetLastError = true)]
public static bool ReplyMessage(
IntPtr result
)
<DllImportAttribute("User32.dll", ExactSpelling := true, SetLastError := true>]
Public Shared Function ReplyMessage (
result As IntPtr
) As Boolean
Dim result As IntPtr
Dim returnValue As Boolean
returnValue = User32.ReplyMessage(result)
public:
[DllImportAttribute(L"User32.dll", ExactSpelling = true, SetLastError = true)]
static bool ReplyMessage(
IntPtr result
)
[<DllImportAttribute("User32.dll", ExactSpelling = true, SetLastError = true)>]
static member ReplyMessage :
result : IntPtr -> bool
No code example is currently available or this language may not be supported.
- result IntPtr
-
The result of the message processing. The possible values are based on the message sent.
Boolean
If the calling thread was processing a message sent from another thread or process, the return value is
.
If the calling thread was not processing a message sent from another thread or process, the return value is
.