diff options
Diffstat (limited to 'plugins/SimpleAR/Src/Main.cpp')
-rw-r--r-- | plugins/SimpleAR/Src/Main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SimpleAR/Src/Main.cpp b/plugins/SimpleAR/Src/Main.cpp index 1705ce2e00..ac9a2d002f 100644 --- a/plugins/SimpleAR/Src/Main.cpp +++ b/plugins/SimpleAR/Src/Main.cpp @@ -335,7 +335,7 @@ extern "C" int __declspec(dllexport)Load(PLUGINLINK *link) mi.position = 500090000;
mi.ptszName = _T("");
mi.pszService = protocolname"/ToggleEnable";
- hEnableMenu = (HANDLE)CallService(MS_CLIST_ADDMAINMENUITEM, 0, (LPARAM)&mi);
+ hEnableMenu = Menu_AddMainMenuItem(&mi);
hToggleAutoanswer = CreateServiceFunction(protocolname"/ToggleAutoanswer",Toggle);
ZeroMemory(&mi, sizeof(mi));
@@ -343,7 +343,7 @@ extern "C" int __declspec(dllexport)Load(PLUGINLINK *link) mi.position=-0x7FFFFFFF;
mi.ptszName=_T("");
mi.pszService=protocolname"/ToggleAutoanswer";
- hToggle = (HANDLE)CallService(MS_CLIST_ADDCONTACTMENUITEM,0,(LPARAM)&mi);
+ hToggle = Menu_AddContactMenuItem(&mi);
//add hook
hOptHook = HookEvent(ME_OPT_INITIALISE, OptInit);
|