mirror of
https://github.com/x64dbg/x64dbg
synced 2026-08-11 18:23:06 -04:00
1.5 KiB
1.5 KiB
GuiReferenceSetCurrentTaskProgress
Sets the percentage bar and some status text in the current Reference View instance. This can indicate to the user that an operation is taking place, e.g. searching/sorting.
void GuiReferenceSetCurrentTaskProgress(int progress, const char* taskTitle);
Parameters
progress An integer representing the value of the percentage bar.
taskTitle A const char representing a text string to indicate status or progress to the user.
Return Value
This function does not return a value.
Example
GuiReferenceSetCurrentTaskProgress(0,"Starting Search, Please Wait...");
// do something
GuiReferenceSetCurrentTaskProgress(50,"Searching, Please Wait...");
// do something else
GuiReferenceSetCurrentTaskProgress(100,"Finished Searching.");
// finished