diff options
author | George Hazan <george.hazan@gmail.com> | 2024-11-12 18:00:55 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-11-12 18:00:55 +0300 |
commit | 744dda0a74a4afa69bb2e27088f1c0f01a8891d9 (patch) | |
tree | 0d260fc4dd522f8869adcd96a4039c5f65f4d132 /include/m_srmm_int.h | |
parent | f7bbaf7fd984d26dbc150d9743aa14cd5dd23a8c (diff) |
SRMM options unification
Diffstat (limited to 'include/m_srmm_int.h')
-rw-r--r-- | include/m_srmm_int.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/include/m_srmm_int.h b/include/m_srmm_int.h index 7ebfa731a8..a67645c47b 100644 --- a/include/m_srmm_int.h +++ b/include/m_srmm_int.h @@ -25,12 +25,24 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #ifndef M_SRMM_INT_H__
#define M_SRMM_INT_H__ 1
-#include <shellapi.h>
#include <vector>
#include <m_gui.h>
+///////////////////////////////////////////////////////////////////////////////////////////////////////////////
+// global settings
+
#define SRMM_MODULE "SRMM"
+#define SRMSGMOD "SRMsg"
+
+#define LOADHISTORY_UNREAD 0
+#define LOADHISTORY_COUNT 1
+#define LOADHISTORY_TIME 2
+
+namespace Srmm
+{
+ extern MIR_APP_EXPORT CMOption<uint8_t> iHistoryMode;
+};
///////////////////////////////////////////////////////////////////////////////////////////////////////////////
// toolbar button internal representation
@@ -273,6 +285,10 @@ public: #include <chat_resource.h>
+#ifndef _INC_SHELLAPI
+DECLARE_HANDLE(HDROP);
+#endif
+
// message procedures' stubs
EXTERN_C MIR_APP_DLL(LRESULT) CALLBACK stubLogProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
EXTERN_C MIR_APP_DLL(LRESULT) CALLBACK stubMessageProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
|