From 59cd198e89782263777c57dcd54704ecb1e10212 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sun, 28 Jun 2015 17:41:48 +0000 Subject: finally CLISTEVENT removed completely git-svn-id: http://svn.miranda-ng.org/main/trunk@14430 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- include/delphi/m_helpers.inc | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'include/delphi/m_helpers.inc') diff --git a/include/delphi/m_helpers.inc b/include/delphi/m_helpers.inc index 72a0b66103..ac89dd005f 100644 --- a/include/delphi/m_helpers.inc +++ b/include/delphi/m_helpers.inc @@ -52,12 +52,12 @@ function Srmm_GetNthIcon(hContact:TMCONTACT; index:int):pStatusIconData; function SkinAddNewSound(const name, description, defaultFile: PAnsiChar): int_ptr; function SkinPlaySound (const name: PAnsiChar): int_ptr; -function Menu_AddContextFrameMenuItem(mi:PCLISTMENUITEM):HGENMENU; -function Menu_AddMainMenuItem (mi:PCLISTMENUITEM):HGENMENU; -function Menu_AddContactMenuItem (mi:PCLISTMENUITEM):HGENMENU; -function Menu_AddStatusMenuItem (mi:PCLISTMENUITEM):HGENMENU; -function Menu_AddProtoMenuItem (mi:PCLISTMENUITEM):HGENMENU; -function Menu_AddTrayMenuItem (mi:PCLISTMENUITEM):HGENMENU; +function Menu_AddContextFrameMenuItem(mi:PMO_MenuItem):HGENMENU; +function Menu_AddMainMenuItem (mi:PMO_MenuItem):HGENMENU; +function Menu_AddContactMenuItem (mi:PMO_MenuItem):HGENMENU; +function Menu_AddStatusMenuItem (mi:PMO_MenuItem):HGENMENU; +function Menu_AddProtoMenuItem (mi:PMO_MenuItem):HGENMENU; +function Menu_AddTrayMenuItem (mi:PMO_MenuItem):HGENMENU; function UserInfo_AddPage(wParam:WPARAM; odp:POPTIONSDIALOGPAGE):int_ptr; function Options_AddPage (wParam:WPARAM; odp:POPTIONSDIALOGPAGE):int_ptr; @@ -384,33 +384,33 @@ begin end; -function Menu_AddContextFrameMenuItem(mi:PCLISTMENUITEM):HGENMENU; +function Menu_AddContextFrameMenuItem(mi:PMO_MenuItem):HGENMENU; begin mi^.hLangpack:=hLangpack; result:=CallService(MS_CLIST_ADDCONTEXTFRAMEMENUITEM, 0,LPARAM(mi)); end; -function Menu_AddMainMenuItem(mi:PCLISTMENUITEM):HGENMENU; +function Menu_AddMainMenuItem(mi:PMO_MenuItem):HGENMENU; begin result:=_AddMainMenuItem(mi, hLangpack); end; -function Menu_AddContactMenuItem(mi:PCLISTMENUITEM):HGENMENU; +function Menu_AddContactMenuItem(mi:PMO_MenuItem):HGENMENU; begin result:=_AddContactMenuItem(mi, nil, hLangpack); end; -function Menu_AddStatusMenuItem(mi:PCLISTMENUITEM):HGENMENU; +function Menu_AddStatusMenuItem(mi:PMO_MenuItem):HGENMENU; begin result:=_AddStatusMenuItem(mi, nil, hLangpack); end; -function Menu_AddProtoMenuItem(mi:PCLISTMENUITEM):HGENMENU; +function Menu_AddProtoMenuItem(mi:PMO_MenuItem):HGENMENU; begin result:=_AddProtoMenuItem(mi, nil, hLangpack); end; -function Menu_AddTrayMenuItem(mi:PCLISTMENUITEM):HGENMENU; +function Menu_AddTrayMenuItem(mi:PMO_MenuItem):HGENMENU; begin mi^.hLangpack:=hLangpack; result:=CallService(MS_CLIST_ADDTRAYMENUITEM, 0,LPARAM(mi)); -- cgit v1.2.3