| 2930 | } |
| 2931 | |
| 2932 | void ChangeContextMenuItemText(int menuitem, string text, HMENU menu) |
| 2933 | { |
| 2934 | MENUITEMINFO moo; |
| 2935 | moo.cbSize = sizeof(moo); |
| 2936 | moo.fMask = MIIM_TYPE; |
| 2937 | moo.cch = NULL; |
| 2938 | GetMenuItemInfo(menu, menuitem, FALSE, &moo); |
| 2939 | moo.dwTypeData = (LPSTR)text.c_str(); |
| 2940 | SetMenuItemInfo(menu, menuitem, FALSE, &moo); |
| 2941 | } |
| 2942 | |
| 2943 | void ChangeMenuItemText(int menuitem, string text) |
| 2944 | { |
no outgoing calls
no test coverage detected