| 249 | } |
| 250 | |
| 251 | void dialog::WaitEnd() |
| 252 | { |
| 253 | if (s_currentDialog == CURRENT_DIALOG_NONE) |
| 254 | return; |
| 255 | |
| 256 | while (s_currentDialog != CURRENT_DIALOG_NONE) { |
| 257 | thread::Sleep(100); |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | bool dialog::IsActive() |
| 262 | { |
nothing calls this directly
no outgoing calls
no test coverage detected