diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-01 14:36:52 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2006-11-01 14:36:52 +0000 |
commit | 7f6efd8c36003cb710319a358f62f1a0d8900384 (patch) | |
tree | 40cc844705a25dd3d6a6f8b28a140bfce17194dc /justtabs/win.h | |
parent | c9afe68aa201d99fd8651a35e45064b57e4d2699 (diff) |
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@6 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'justtabs/win.h')
-rw-r--r-- | justtabs/win.h | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/justtabs/win.h b/justtabs/win.h new file mode 100644 index 0000000..3a4f813 --- /dev/null +++ b/justtabs/win.h @@ -0,0 +1,45 @@ +#ifndef _JT_WIN_H
+#define _JT_WIN_H
+
+#define _WIN32_IE 0x400
+
+#include <windows.h>
+#include <commctrl.h>
+
+#include "resource.h"
+#include <stdio.h>
+
+#include <newpluginapi.h>
+#include <m_system.h>
+#include <m_database.h>
+#include <m_options.h>
+#include <m_langpack.h>
+#include <m_popup.h>
+#include <m_skin.h>
+#include <m_clist.h>
+#include <m_clui.h>
+#include <m_message.h>
+#include <m_utils.h>
+#include <m_protocols.h>
+#include <m_updater.h>
+#include <win2k.h>
+
+#define MODULE "JustTabs"
+
+extern HWND pluginwind;
+extern HINSTANCE hInst;
+
+#define WM_PREADDCHILD (WM_USER + 0x1FF)
+#define WM_ADDCHILD (WM_USER + 0x200)
+#define WM_REMCHILD (WM_USER + 0x201)
+#define WM_SHOWCONTACTWND (WM_USER + 0x202)
+#define WM_HIGHLIGHTCONTACTWND (WM_USER + 0x203)
+#define WM_RESETTABICONS (WM_USER + 0x204)
+
+#define STYLE_TITLE ((DS_SETFONT | DS_3DLOOK | DS_FIXEDSYS | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME) & ~WS_VISIBLE)
+#define STYLE_NOTITLE ((DS_SETFONT | DS_3DLOOK | DS_FIXEDSYS | WS_THICKFRAME) & ~WS_VISIBLE)
+
+LRESULT CALLBACK FrameWindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
+int CreateFrame(HWND parent, HINSTANCE hInst);
+
+#endif
|