mirror of
https://github.com/x64dbg/x64dbg
synced 2026-08-11 18:23:06 -04:00
25 lines
445 B
ReStructuredText
25 lines
445 B
ReStructuredText
|
|
===================
|
||
|
|
_plugin_startscript
|
||
|
|
===================
|
||
|
|
Creates a new thread to run the callback function asynchronously.
|
||
|
|
|
||
|
|
::
|
||
|
|
|
||
|
|
void _plugin_startscript(
|
||
|
|
CBPLUGINSCRIPT cbScript //callback
|
||
|
|
);
|
||
|
|
|
||
|
|
----------
|
||
|
|
Parameters
|
||
|
|
----------
|
||
|
|
:cbScript: Callback with the following typedef:
|
||
|
|
|
||
|
|
::
|
||
|
|
|
||
|
|
typedef void (*CBPLUGINSCRIPT)();
|
||
|
|
|
||
|
|
-------------
|
||
|
|
Return Values
|
||
|
|
-------------
|
||
|
|
This function does not return a value.
|