mirror of
https://github.com/x64dbg/x64dbg
synced 2026-08-11 18:23:06 -04:00
24 lines
499 B
ReStructuredText
24 lines
499 B
ReStructuredText
=================
|
|
_plugin_logprintf
|
|
=================
|
|
|
|
This function prints a message to the log window.
|
|
|
|
::
|
|
|
|
void _plugin_logprintf(
|
|
const char* format, //format string
|
|
... //additional arguments
|
|
);
|
|
|
|
----------
|
|
Parameters
|
|
----------
|
|
|
|
:format: Format string that has the same specifications as printf.
|
|
:...: Additional arguments (when needed by the format string).
|
|
|
|
-------------
|
|
Return Values
|
|
-------------
|
|
This function does not return a value.
|