diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-05-18 22:10:43 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-05-18 22:10:43 +0000 |
commit | 725f68b6808a8a30778f58223fac75386f082785 (patch) | |
tree | ccba410760749d45139e5e78fd5e08f416ade1a0 /plugins/mwclist/clist.h | |
parent | f920ef497f3299ae24fe783ce03bdd93b419f764 (diff) |
plugins folders renaming
git-svn-id: http://svn.miranda-ng.org/main/trunk@61 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/mwclist/clist.h')
-rw-r--r-- | plugins/mwclist/clist.h | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/plugins/mwclist/clist.h b/plugins/mwclist/clist.h deleted file mode 100644 index 9277f7d471..0000000000 --- a/plugins/mwclist/clist.h +++ /dev/null @@ -1,60 +0,0 @@ -/*
-
-Miranda IM: the free IM client for Microsoft* Windows*
-
-Copyright 2000-2003 Miranda ICQ/IM project,
-all portions of this codebase are copyrighted to the people
-listed in contributors.txt.
-
-This program is free software; you can redistribute it and/or
-modify it under the terms of the GNU General Public License
-as published by the Free Software Foundation; either version 2
-of the License, or (at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-*/
-#ifndef _CLIST_H_
-#define _CLIST_H_
-
-void LoadContactTree(void);
-int ExtIconFromStatusMode(HANDLE hContact, const char *szProto,int status);
-HTREEITEM GetTreeItemByHContact(HANDLE hContact);
-void TrayIconUpdateWithImageList(int iImage,const char *szNewTip,char *szPreferredProto);
-void SortContacts(void);
-void ChangeContactIcon(HANDLE hContact,int iIcon,int add);
-int GetContactInfosForSort(HANDLE hContact,char **Proto,TCHAR **Name,int *Status);
-
-typedef struct {
- HANDLE hContact;
- TCHAR *name;
- #if defined( _UNICODE )
- char *szName;
- #endif
- TCHAR* szGroup;
- int Hidden;
- int noHiddenOffline;
-
- char *szProto;
- boolean protoNotExists;
- int status;
-
- int i;
- int ApparentMode;
- int NotOnList;
- int IdleTS;
- void *ClcContact;
- BYTE IsExpanded;
- boolean isUnknown;
-}
- displayNameCacheEntry,*pdisplayNameCacheEntry;
-
-pdisplayNameCacheEntry GetContactFullCacheEntry(HANDLE hContact);
-
-#endif
\ No newline at end of file |