diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-04 21:25:32 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-04 21:25:32 +0300 |
commit | b064f2ebde6d4a58141e5b2e8186c6ea53680f64 (patch) | |
tree | b01cf136a0b4b8f02697090cde4ed55c3f2832e2 /include | |
parent | d4b6de0fb4ca58063eb2f424c77e74e703022b63 (diff) |
CLIST_INTERFACE::pfnGetAccountIndexByPos => Clist_GetAccountIndex
Diffstat (limited to 'include')
-rw-r--r-- | include/m_clistint.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/m_clistint.h b/include/m_clistint.h index ef1771a4b7..8eb695413e 100644 --- a/include/m_clistint.h +++ b/include/m_clistint.h @@ -255,6 +255,9 @@ EXTERN_C MIR_APP_DLL(void) Clist_BroadcastAsync(int msg, WPARAM wParam, LPARAM l EXTERN_C MIR_APP_DLL(bool) Clist_FindItem(HWND hwnd, ClcData *dat, DWORD dwItem, ClcContact **contact, ClcGroup **subgroup, int *isVisible);
EXTERN_C MIR_APP_DLL(void) Clist_InitAutoRebuild(HWND hWnd);
+// calculates account's index by its position in status bar
+EXTERN_C MIR_APP_DLL(int) Clist_GetAccountIndex(int iPos);
+
/////////////////////////////////////////////////////////////////////////////////////////
// CLIST_INTERFACE structure definition
@@ -471,11 +474,6 @@ struct CLIST_INTERFACE VOID (CALLBACK *pfnTrayCycleTimerProc)(HWND hwnd, UINT message, UINT_PTR idEvent, DWORD dwTime);
/*************************************************************************************
- * version 6 additions (0.8.0.x) - accounts
- *************************************************************************************/
- int (*pfnGetAccountIndexByPos)(int pos);
-
- /*************************************************************************************
* version 7 additions (0.11.0.x) - extra images
*************************************************************************************/
void (*pfnReloadExtraIcons)(void);
|