Hides the main menu. @param hide_menu Flag to turn the main menu on (0) or off (1)
| 1010 | // Hides the main menu. |
| 1011 | //@param hide_menu Flag to turn the main menu on (0) or off (1) |
| 1012 | void HideMenu(unsigned int hide_menu) |
| 1013 | { |
| 1014 | if(hide_menu) |
| 1015 | { |
| 1016 | SetMenu(hAppWnd, 0); |
| 1017 | } |
| 1018 | else |
| 1019 | { |
| 1020 | SetMenu(hAppWnd, fceumenu); |
| 1021 | } |
| 1022 | } |
| 1023 | |
| 1024 | void HideFWindow(int h) |
| 1025 | { |
no outgoing calls
no test coverage detected