ChangeWindowMessageFilterExAction Enumeration
Namespace: DevCase.Win32.EnumsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public enum ChangeWindowMessageFilterExAction
Public Enumeration ChangeWindowMessageFilterExAction
Dim instance As ChangeWindowMessageFilterExAction
public enum class ChangeWindowMessageFilterExAction
type ChangeWindowMessageFilterExAction
No code example is currently available or this language may not be supported.
Reset |
0 |
Resets the window message filter to the default.
Any message allowed globally or process-wide will get through,
but any message not included in those two categories,
and which comes from a lower privileged process, will be blocked.
|
Add |
1 |
Allows the message through the filter.
This enables the message to be received, regardless of the source of the message,
even it comes from a lower privileged process.
|
Remove |
2 |
Blocks the message to be delivered if it comes from a lower privileged process,
unless the message is allowed process-wide by using the ChangeWindowMessageFilter function or globally.
|