MCPcopy Create free account
hub / github.com/TASEmulators/fceux / HideMenu

Function HideMenu

src/drivers/win/window.cpp:1012–1022  ·  view source on GitHub ↗

Hides the main menu. @param hide_menu Flag to turn the main menu on (0) or off (1)

Source from the content-addressed store, hash-verified

1010// Hides the main menu.
1011//@param hide_menu Flag to turn the main menu on (0) or off (1)
1012void 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
1024void HideFWindow(int h)
1025{

Callers 2

HideFWindowFunction · 0.85
ToggleHideMenuFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected