| 20 | |
| 21 | namespace dialog { |
| 22 | void CommonGuiEventHandler(int32_t instanceSlot, CommonGuiDialog::DIALOG_CB buttonCode, void *pUserArg) |
| 23 | { |
| 24 | CommonGuiDialog::Dialog::Close(instanceSlot); |
| 25 | s_currentDialog = CURRENT_DIALOG_NONE; |
| 26 | event::BroadcastGlobalEvent(s_currentPlugin, DialogEvent, buttonCode); |
| 27 | s_currentPlugin = NULL; |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | void dialog::OpenPleaseWait(Plugin *workPlugin, const wchar_t *titleText, const wchar_t *messageText, bool withCancel) |
nothing calls this directly
no outgoing calls
no test coverage detected