summaryrefslogtreecommitdiff
path: root/plugins/QuickMessages/Utils.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2012-07-23 12:31:44 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2012-07-23 12:31:44 +0000
commitbd80013253c1fabc856c05c4f839d00ec18b2b06 (patch)
treeef23678929953fd4730d2c1f00ae48e9134a96e8 /plugins/QuickMessages/Utils.h
parent905145a0553737e82ca04a5a3d3c6e0e8e78b90d (diff)
QuickMessages, QuickReplies: changed folder structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@1119 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/QuickMessages/Utils.h')
-rw-r--r--plugins/QuickMessages/Utils.h78
1 files changed, 0 insertions, 78 deletions
diff --git a/plugins/QuickMessages/Utils.h b/plugins/QuickMessages/Utils.h
deleted file mode 100644
index c136459239..0000000000
--- a/plugins/QuickMessages/Utils.h
+++ /dev/null
@@ -1,78 +0,0 @@
-/*
-Quick Messages plugin for Miranda IM
-
-Copyright (C) 2008 Danil Mozhar
-
-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 3 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, see <http://www.gnu.org/licenses/>.
-*/
-#define QMF_NEW (1<<0)
-#define QMF_DELETNEEDED (1<<1)
-#define QMF_RENAMED (1<<2)
-
-#define QMF_EX_CHILD (1<<0)
-#define QMF_EX_SEPARATOR (1<<1)
-
-typedef struct _tagButtonData
- {
- DWORD dwPos;
- DWORD dwOPPos;
- BYTE fEntryType;
- BYTE fEntryOpType;
- BYTE bIsServName;
- BYTE bIsOpServName;
- BYTE bInQMenu;
- BYTE bOpInQMenu;
- DWORD dwOPFlags;
- TCHAR *pszName;
- TCHAR *pszValue;
- TCHAR *pszOpValue;
- TCHAR *pszOpName;
- }ButtonData;
-
-typedef struct _tagListData
- {
- SortedList* sl;
- DWORD dwPos;
- DWORD dwOPPos;
- TCHAR* ptszQValue;
- TCHAR* ptszOPQValue;
- TCHAR* ptszButtonName;
- BYTE bIsServName;
- BYTE bIsOpServName;
- DWORD dwOPFlags;
- }ListData;
-
-typedef struct _tagQuickData
- {
- DWORD dwPos;
- BOOL bIsService;
- BYTE fEntryType;
- TCHAR* ptszValue;
- TCHAR* ptszValueName;
- }QuickData;
-
-void InitButtonsList();
-void DestructButtonsList();
-int sstSortButtons(const void * vmtbi1, const void * vmtbi2);
-int sstOpSortButtons(const void * vmtbi1, const void * vmtbi2);
-int sstQuickSortButtons(const void * vmtbi1, const void * vmtbi2);
-void li_ZeroQuickList(SortedList *pList);
-TCHAR* getMenuEntry(int entrynum,int buttonnum,BYTE mode) ;
-int RegisterCustomButton(WPARAM wParam,LPARAM lParam);
-void RemoveMenuEntryNode(SortedList *pList, int index);
-void DestroyButton(int listnum);
-void SaveModuleSettings(int buttonnum,ButtonData* bd);
-void CleanSettings(int buttonnum,int from);
-DWORD BalanceButtons(int buttonsWas,int buttonsNow);
-TCHAR* ParseString(HANDLE hContact,TCHAR* ptszQValueIn,TCHAR* ptszText,TCHAR* ptszClip,int QVSize,int TextSize ,int ClipSize); \ No newline at end of file