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

Function ChangeMemwMenuItemText

src/drivers/win/memwatch.cpp:1148–1157  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1146}
1147
1148void ChangeMemwMenuItemText(int menuitem, string text)
1149{
1150 MENUITEMINFO moo;
1151 moo.cbSize = sizeof(moo);
1152 moo.fMask = MIIM_TYPE;
1153 moo.cch = NULL;
1154 GetMenuItemInfo(memwmenu, menuitem, FALSE, &moo);
1155 moo.dwTypeData = (LPSTR)text.c_str();
1156 SetMenuItemInfo(memwmenu, menuitem, FALSE, &moo);
1157}
1158
1159void CollapseWindow(void)
1160{

Callers 1

CollapseWindowFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected