diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-07-20 04:08:52 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-07-20 04:08:52 +0000 |
commit | 2184116cbf00ea959282cc6172934c81c74cb252 (patch) | |
tree | bac25447748b339243f6830b838acfcdfa068e0c /metacontacts/metacontacts.h | |
parent | ff978db3ec26fbebe32465f4d1d30cf6aa066768 (diff) |
made subcontact priorities configurable
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@289 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'metacontacts/metacontacts.h')
-rw-r--r-- | metacontacts/metacontacts.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/metacontacts/metacontacts.h b/metacontacts/metacontacts.h index ba08edc..ba0d207 100644 --- a/metacontacts/metacontacts.h +++ b/metacontacts/metacontacts.h @@ -29,6 +29,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #define _WIN32_WINNT 0x0400
#define _WIN32_IE 0x0300
+#define MIRANDA_VER 0x0600
+
#include <windows.h>
#include <winsock.h>
#include <winbase.h>
@@ -206,9 +208,13 @@ typedef struct tag_MetaOptions { extern MetaOptions options;
BOOL CALLBACK DlgProcOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
+BOOL CALLBACK DlgProcOptsPriorities(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
int Meta_WriteOptions(MetaOptions *opt);
int Meta_ReadOptions(MetaOptions *opt);
+int GetDefaufaultPrio(int status);
+int GetRealPriority(char *proto, int status);
+
// API function headers
int MetaAPI_GetMeta(WPARAM wParam, LPARAM lParam);
int MetaAPI_GetDefault(WPARAM wParam, LPARAM lParam);
|