mirror of
https://github.com/x64dbg/x64dbg
synced 2026-08-11 18:23:06 -04:00
604 B
604 B
DbgValToString
Legacy name for DbgValSetScalar kept for binary compatibility.
DbgValToString is no longer part of the public bridge header. Use DbgValSetScalar instead.
bool DbgValToString(const char* string, duint value);
Parameters
string The name of the thing to set in UTF-8 encoding.
value The value to set.
Return Value
true if the value was set successfully, false otherwise.
Example
DbgValToString("eax", 1);