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.
HookType (Enums)
.
C# Definition:
public enum HookType : int
{
WH_JOURNALRECORD = 0, //Installs a hook procedure that records input messages posted to the system message queue. This hook is useful for recording macros.
WH_JOURNALPLAYBACK = 1, //Installs a hook procedure that posts messages previously recorded by a WH_JOURNALRECORD hook procedure.
WH_KEYBOARD = 2, //Installs a hook procedure that monitors keystroke messages.
WH_GETMESSAGE = 3, //Installs a hook procedure that monitors messages posted to a message queue.
WH_CALLWNDPROC = 4, //Installs a hook procedure that monitors messages before the system sends them to the destination window procedure.
WH_CBT = 5, //Installs a hook procedure that receives notifications useful to a CBT application.
WH_SYSMSGFILTER = 6, /*Installs a hook procedure that monitors messages generated as a result of an input event in a dialog box, message box, menu, or
scroll bar. The hook procedure monitors these messages for all applications in the same desktop as the calling thread.*/
WH_MOUSE = 7, //Installs a hook procedure that monitors mouse messages.
WH_HARDWARE = 8,
WH_DEBUG = 9, //Installs a hook procedure useful for debugging other hook procedures.
WH_SHELL = 10, //Installs a hook procedure that receives notifications useful to shell applications.
WH_FOREGROUNDIDLE = 11, //Installs a hook procedure that will be called when the application's foreground thread is about to become idle.
WH_CALLWNDPROCRET = 12, //Installs a hook procedure that monitors messages after they have been processed by the destination window procedure.
WH_KEYBOARD_LL = 13, //Installs a hook procedure that monitors low-level keyboard input events.
WH_MOUSE_LL = 14 //Installs a hook procedure that monitors low-level mouse input events.
}