Debugger: Add work notification hook to UserInterface.

UserInterface:
- Add new hook function used to notify the UI that some form of
  background work is taking place for informational purposes,
  i.e. no interaction required. Implement accordingly in
  GraphicalUserInterface.
This commit is contained in:
Rene Gollent
2015-08-14 20:53:03 -04:00
parent 0324fc408c
commit 7f77789d5b
5 changed files with 27 additions and 1 deletions
@@ -203,6 +203,12 @@ CommandLineUserInterface::NotifyUser(const char* title, const char* message,
}
void
CommandLineUserInterface::NotifyBackgroundWorkStatus(const char* message)
{
}
int32
CommandLineUserInterface::SynchronouslyAskUser(const char* title,
const char* message, const char* choice1, const char* choice2,