Added menu option to send CTRL-ALT-DELETE to emulated machine. Patch from GeeDee.

This commit is contained in:
TomW 2014-11-18 18:38:12 +00:00
commit 2be271d050
5 changed files with 20 additions and 0 deletions

View file

@ -763,6 +763,12 @@ LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM
resetpchard();
pause=0;
break;
case IDM_FILE_RESET_CAD:
pause=1;
Sleep(100);
resetpc_cad();
pause=0;
break;
case IDM_FILE_EXIT:
PostQuitMessage (0); /* send a WM_QUIT to the message queue */
break;