From f0c35213c35ec2ead05eb616418ee93a2798ed7e Mon Sep 17 00:00:00 2001 From: mataes2007 Date: Fri, 15 Jul 2011 20:20:00 +0000 Subject: added Sessions plugin, lasr changes: added x64 support added context-sensitive langpacks support code formatting added MessageBox translation git-svn-id: http://miranda-plugins.googlecode.com/svn/trunk@147 e753b5eb-9565-29b2-b5c5-2cc6f99dfbcb --- Sessions/Src/Utils.h | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 Sessions/Src/Utils.h (limited to 'Sessions/Src/Utils.h') diff --git a/Sessions/Src/Utils.h b/Sessions/Src/Utils.h new file mode 100644 index 0000000..bfcdd38 --- /dev/null +++ b/Sessions/Src/Utils.h @@ -0,0 +1,45 @@ +/* +Sessions Management plugin for Miranda IM + +Copyright (C) 2007-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 . +*/ + +#ifndef __UTILS_H__ +# define __UTILS_H__ + +void SetInSessionOrder(HANDLE hContact,int mode,int count,unsigned int ordernum); +void AddInSessionOrder(HANDLE hContact,int mode,int ordernum,int writemode); +int GetInSessionOrder(HANDLE hContact,int mode,int count); +void AddSessionMark(HANDLE hContact,int mode,char bit); +void RemoveSessionMark(HANDLE hContact,int mode,int marknum); +void SetSessionMark(HANDLE hContact,int mode,char bit,unsigned int marknum); +BOOL LoadContactsFromMask(HANDLE hContact,int mode,int count); +int AddToCurSession (DWORD wparam,LPARAM lparam); +int DelFromCurSession(DWORD wparam,LPARAM lparam); +int CheckForDuplicate(DWORD contact_list[],DWORD lparam); +BOOL ResaveSettings(char* szName,int iFirst,int iLimit,TCHAR* pszPrevSetting); +void OffsetWindow(HWND parent, HWND hwnd, int dx, int dy); +int LoadSessionToCombobox (HWND hdlg,BOOL mode,int iLimit,char* pszSetting,int iFirstNum); +int AddIcon(HICON icon, char *name, TCHAR *description); +int MarkUserDefSession(int ses_count,BYTE bCheck); +BYTE IsMarkedUserDefSession(int ses_count); +void SavePosition(HWND hWnd, char *wndName); +void LoadPosition(HWND hWnd, char *wndName); +int CheckContactVisibility(DWORD hContact); +void RenameUserDefSession(int ses_count,TCHAR* ptszNewName); +int FillFavoritesMenu (HMENU hMenu,int iLimit); + +#endif // __UTILS_H__ \ No newline at end of file -- cgit v1.2.3