PROJECT: updated help
This commit is contained in:
parent
1ffff8fdf7
commit
d152b111bf
|
@ -116,4 +116,12 @@ here</U>, this will slow the debugger down a lot!<BR>struct <STRONG>PLUG_CB_DEBU
|
|||
<STRONG>DEBUG_EVENT*</STRONG> DebugEvent;<BR>};</P>
|
||||
<P>//Called when a menu entry created by the plugin has
|
||||
been clicked, the GUI will resume when this callback returns.<BR>struct <STRONG>PLUG_CB_MENUENTRY</STRONG><BR>{<BR>
|
||||
<STRONG>int</STRONG> hEntry;<BR>};</P></body></HTML>
|
||||
<STRONG>int</STRONG> hEntry;<BR>};</P>
|
||||
<P>//Called before TranslateMessage and DispatchMessage
|
||||
Windows functions (PreTranslateMessage). Avoid calling user32 functions without
|
||||
precautions here, there <STRONG>will</STRONG> be a recursive call if you fail
|
||||
to take countermeasures.<BR>struct
|
||||
<STRONG>PLUG_CB_WINEVENT<BR></STRONG>{<BR> <STRONG>MSG*</STRONG>
|
||||
message;<BR> <STRONG>long*</STRONG>
|
||||
result;<BR> <STRONG>bool</STRONG>
|
||||
retval;<BR>};</P></body>
|
|
@ -57,8 +57,11 @@ PLUG_CB_PAUSEDEBUG*<BR>
|
|||
CB_RESUMEDEBUG, //callbackInfo:
|
||||
PLUG_CB_RESUMEDEBUG*<BR> CB_STEPPED,
|
||||
//callbackInfo: PLUG_CB_STEPPED* <BR> CB_ATTACH,
|
||||
//callbackInfo: PLUG_CB_ATTACHED*<BR> CB_DETACH //callbackInfo:
|
||||
PLUG_CB_DETACHED*
|
||||
//callbackInfo: PLUG_CB_ATTACHED*<BR> CB_DETACH, //callbackInfo:
|
||||
PLUG_CB_DETACHED*<BR> CB_DEBUGEVENT, //callbackInfo:
|
||||
PLUG_CB_DEBUGEVENT*<BR> CB_MENUENTRY, //callbackInfo:
|
||||
PLUG_CB_MENUENTRY*<BR> CB_WINEVENT //callbackInfo:
|
||||
PLUG_CB_WINEVENT*
|
||||
|
||||
|
||||
</P>
|
||||
|
@ -78,4 +81,4 @@ return a value.
|
|||
|
||||
|
||||
|
||||
</P></body>
|
||||
</P></head>
|
|
@ -53,11 +53,11 @@ CB_BREAKPOINT,<BR>
|
|||
<BR>
|
||||
CB_RESUMEDEBUG,<BR> CB_STEPPED,<BR>
|
||||
CB_ATTACH,<BR> CB_DETACH,<BR>
|
||||
CB_DEBUGEVENT,<BR>
|
||||
CB_MENUENTRY
|
||||
CB_DEBUGEVENT,<BR> CB_MENUENTRY,<BR>
|
||||
CB_WINEVENT
|
||||
|
||||
</P>
|
||||
<P><STRONG>Return Values<BR></STRONG>This function returns
|
||||
true when the callback was removed without problems.
|
||||
|
||||
</P></body>
|
||||
</P></head>
|
Loading…
Reference in New Issue