diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-06 21:37:45 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-06 21:37:45 +0300 |
commit | d5558b6f67918ea8f951fd0408eff18532a63d4e (patch) | |
tree | ac73e7988e1d6a06f588717d6b93cea90bec16e3 /include | |
parent | 4f5b5ef8c908156bd30d5bb391c1e238cbcc2f0c (diff) |
CLIST_INTERFACE::pfnClcOptionsChanged => Clist_ClcOptionsChanged
CLIST_INTERFACE::pfnRegisterFileDropping & CLIST_INTERFACE::pfnUnregisterFileDropping => suspended
Diffstat (limited to 'include')
-rw-r--r-- | include/delphi/m_clistint.inc | 8 | ||||
-rw-r--r-- | include/m_clistint.h | 9 |
2 files changed, 9 insertions, 8 deletions
diff --git a/include/delphi/m_clistint.inc b/include/delphi/m_clistint.inc index d89db6b8dd..119c2b40bb 100644 --- a/include/delphi/m_clistint.inc +++ b/include/delphi/m_clistint.inc @@ -297,14 +297,14 @@ type clcProto : PClcProtoStatus;
(* clc.h *)
- pfnClcOptionsChanged : procedure; cdecl;
- pfnBuildGroupPopupMenu : function (_para1:PClcGroup):HMENU; cdecl;
+ blablablabla27 : procedure; cdecl;
+ blablablabla26 : procedure; cdecl;
pfnContactListControlWndProc : function(hwnd:HWND; msg:uint; wParam:WPARAM; lParam:LPARAM):LRESULT; stdcall;
(* clcfiledrop.c *)
- pfnRegisterFileDropping : procedure (hwnd:HWND); cdecl;
- pfnUnregisterFileDropping : procedure (hwnd:HWND); cdecl;
+ blablablabla25 : procedure; cdecl;
+ blablablabla24 : procedure; cdecl;
(* clcidents.c *)
blablabla6 : procedure; cdecl;
diff --git a/include/m_clistint.h b/include/m_clistint.h index 86b504f70b..94b4da6bf7 100644 --- a/include/m_clistint.h +++ b/include/m_clistint.h @@ -254,6 +254,7 @@ EXTERN_C MIR_APP_DLL(void) Clist_BroadcastAsync(int msg, WPARAM wParam, LPA EXTERN_C MIR_APP_DLL(void) Clist_CalcEipPosition(ClcData *dat, ClcContact *contact, ClcGroup *group, POINT *result);
EXTERN_C MIR_APP_DLL(void) Clist_ChangeContactIcon(MCONTACT hContact, int iIcon);
+EXTERN_C MIR_APP_DLL(void) Clist_ClcOptionsChanged(void);
EXTERN_C MIR_APP_DLL(int) Clist_ClcStatusToPf2(int status);
EXTERN_C MIR_APP_DLL(void) Clist_DeleteFromContactList(HWND hwnd, ClcData *dat);
EXTERN_C MIR_APP_DLL(void) Clist_DeleteItemFromTree(HWND hwnd, MCONTACT hItem);
@@ -321,14 +322,14 @@ struct CLIST_INTERFACE ClcProtoStatus *clcProto;
/* clc.h */
- void (*pfnClcOptionsChanged)(void);
- HMENU (*pfnBuildGroupPopupMenu)(struct ClcGroup*); // unused
+ void (*blablablabla27)();
+ void (*blablablabla26)();
LRESULT (CALLBACK *pfnContactListControlWndProc)(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
/* clcfiledrop.c */
- void (*pfnRegisterFileDropping)(HWND hwnd);
- void (*pfnUnregisterFileDropping)(HWND hwnd);
+ void (*blablablabla25)();
+ void (*blablablabla24)();
/* clcidents.c */
ClcContact* (*pfnFindItem)(DWORD dwItem, ClcContact *contact);
|