1
0
Fork 0

PROJECT: updated help

This commit is contained in:
Mr. eXoDia 2014-07-16 17:15:14 +02:00
parent 1ffff8fdf7
commit d152b111bf
3 changed files with 18 additions and 7 deletions

View File

@ -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>&nbsp;&nbsp;&nbsp;
<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>&nbsp;&nbsp;&nbsp; <STRONG>MSG*</STRONG>
message;<BR>&nbsp;&nbsp;&nbsp; <STRONG>long*</STRONG>
result;<BR>&nbsp;&nbsp;&nbsp; <STRONG>bool</STRONG>
retval;<BR>};</P></body>

View File

@ -57,8 +57,11 @@ PLUG_CB_PAUSEDEBUG*<BR>&nbsp;&nbsp;&nbsp;
CB_RESUMEDEBUG, //callbackInfo:
PLUG_CB_RESUMEDEBUG*<BR>&nbsp;&nbsp;&nbsp; CB_STEPPED,
//callbackInfo: PLUG_CB_STEPPED* <BR>&nbsp;&nbsp;&nbsp; CB_ATTACH,
//callbackInfo: PLUG_CB_ATTACHED*<BR>&nbsp;&nbsp;&nbsp; CB_DETACH&nbsp; //callbackInfo:
PLUG_CB_DETACHED*
//callbackInfo: PLUG_CB_ATTACHED*<BR>&nbsp;&nbsp;&nbsp; CB_DETACH, //callbackInfo:
PLUG_CB_DETACHED*<BR>&nbsp;&nbsp;&nbsp; CB_DEBUGEVENT, //callbackInfo:
PLUG_CB_DEBUGEVENT*<BR>&nbsp;&nbsp;&nbsp; CB_MENUENTRY, //callbackInfo:
PLUG_CB_MENUENTRY*<BR>&nbsp;&nbsp;&nbsp; CB_WINEVENT //callbackInfo:
PLUG_CB_WINEVENT*
</P>
@ -78,4 +81,4 @@ return a value.
</P></body>
</P></head>

View File

@ -53,11 +53,11 @@ CB_BREAKPOINT,<BR>
<BR>
&nbsp;&nbsp;&nbsp; CB_RESUMEDEBUG,<BR>&nbsp;&nbsp;&nbsp; CB_STEPPED,<BR>&nbsp;&nbsp;&nbsp;
CB_ATTACH,<BR>&nbsp;&nbsp;&nbsp; CB_DETACH,<BR>&nbsp;&nbsp;&nbsp;
CB_DEBUGEVENT,<BR> &nbsp;&nbsp;&nbsp;
CB_MENUENTRY&nbsp;
CB_DEBUGEVENT,<BR>&nbsp;&nbsp;&nbsp; CB_MENUENTRY,<BR> &nbsp;&nbsp;&nbsp;
CB_WINEVENT&nbsp;
</P>
<P><STRONG>Return Values<BR></STRONG>This function returns
true when the callback was removed without problems.
</P></body>
</P></head>