diff options
author | George Hazan <george.hazan@gmail.com> | 2014-11-03 16:10:07 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-11-03 16:10:07 +0000 |
commit | 415dcffc401ffdca1c0ccf94975c733b15d2e3c3 (patch) | |
tree | dca6756011ae055f2026393c6098052faef6ca48 /plugins/Sessions/Src/Sessions.h | |
parent | 686b657701e50c3682045fdf4af9283e14087e04 (diff) |
massive code cleaning for Sessions
git-svn-id: http://svn.miranda-ng.org/main/trunk@10911 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Sessions/Src/Sessions.h')
-rw-r--r-- | plugins/Sessions/Src/Sessions.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/Sessions/Src/Sessions.h b/plugins/Sessions/Src/Sessions.h index 5cbfd65a4b..c053fde48d 100644 --- a/plugins/Sessions/Src/Sessions.h +++ b/plugins/Sessions/Src/Sessions.h @@ -24,6 +24,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include <windows.h>
#include <commctrl.h>
+#include <malloc.h>
+
#include <newpluginapi.h>
#include <m_options.h>
#include <m_clc.h>
@@ -44,6 +46,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define MODNAME "Sessions"
+#define MS_SESSIONS_LAUNCHME "Sessions/Service/LaunchMe"
+
extern IconItem iconList[];
#define MIIM_STRING 0x00000040
@@ -60,8 +64,8 @@ int SaveSessionDate(); extern HINSTANCE hinstance;
extern MCONTACT session_list_recovered[255];
extern MCONTACT session_list[255];
-extern unsigned int ses_limit;
-extern unsigned int g_ses_count;
+extern int g_ses_limit;
+extern int g_ses_count;
extern BOOL g_bExclHidden;
extern BOOL g_bWarnOnHidden;
extern BOOL g_bOtherWarnings;
|