105 |
} |
} |
106 |
|
|
107 |
|
|
|
#if 0 |
|
|
/* Set the menu item @muid to the state @state. */ |
|
|
void |
|
|
set_menu_state (HMENU menu, UINT muid, UINT state) |
|
|
{ |
|
|
MENUITEMINFO mii; |
|
|
|
|
|
memset (&mii, 0, sizeof (mii)); |
|
|
mii.cbSize = sizeof (mii); |
|
|
mii.fMask = MIIM_STATE; |
|
|
mii.fState = state; |
|
|
SetMenuItemInfo (menu, muid, FALSE, &mii); |
|
|
} |
|
|
#endif |
|
|
|
|
|
|
|
108 |
/* Get an option with the name @name from the registry. */ |
/* Get an option with the name @name from the registry. */ |
109 |
int |
int |
110 |
get_gpgoe_option (const char *name) |
get_gpgoe_option (const char *name) |
312 |
char buf[256]; |
char buf[256]; |
313 |
_snprintf (buf, sizeof (buf)-1, |
_snprintf (buf, sizeof (buf)-1, |
314 |
"GPGoe found an instance of a program which\n" |
"GPGoe found an instance of a program which\n" |
315 |
"might be effect the functionality of the plugin.\n" |
"might effect the functionality of the plugin.\n" |
316 |
"\n" |
"\n" |
317 |
"Name of the process: %s\n" |
"Name of the process: %s\n" |
318 |
"\n" |
"\n" |