Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Enums, prefix the name with the module name and a period.
MessageFilterAction (Enums)
.
C# Definition:
public enum MessageFilterAction
{
/// <summary>
/// Resets the window message filter for hWnd 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.
/// </summary>
MSGFLT_RESET = 0,
/// <summary>
/// Allows the message through the filter. This enables the message to be received by hWnd,
/// regardless of the source of the message, even it comes from a lower privileged process.
/// </summary>
MSGFLT_ALLOW,
/// <summary>
/// Blocks the message to be delivered to hWnd if it comes from a lower privileged process,
/// unless the message is allowed process-wide by using the ChangeWindowMessageFilter function or globally
/// </summary>
MSGFLT_DISALLOW
}
VB Definition:
Enum MessageFilterAction
TODO
End Enum
Notes:
This isn't an official enum name, these values were put together from #Defines in the header file
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it!