| 1329 | } |
| 1330 | |
| 1331 | int DWaitButton(HWND hParent, const char *text, ButtConfig *bc) |
| 1332 | { |
| 1333 | DWBText=text; |
| 1334 | DWBButtons = bc; |
| 1335 | DWBStarted = 1; |
| 1336 | |
| 1337 | int nRet = DialogBox(fceu_hInstance, "DWBDIALOG", hParent, DWBCallB); |
| 1338 | SetFocus(hParent); |
| 1339 | return 0; //mbg merge TODO 7/17/06 - had to add this return value--is it right? |
| 1340 | } |
| 1341 | |
| 1342 | static ButtConfig *DoTBButtons=0; |
| 1343 | static const char *DoTBTitle=0; |
no outgoing calls
no test coverage detected