diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-02 19:53:14 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-03-02 19:53:14 +0000 |
commit | 1ac26e41d1de88965131401356c37497bf899ded (patch) | |
tree | e251062e4d661976ec782fa0b285ef0685832ee9 /plugins/NotifyAnything/src/common.h | |
parent | f71d09a473a8bcb7dd75afa7fc56554df1d827ad (diff) |
removed not used headers
added version info
removed not used files
git-svn-id: http://svn.miranda-ng.org/main/trunk@3855 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/NotifyAnything/src/common.h')
-rw-r--r-- | plugins/NotifyAnything/src/common.h | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/plugins/NotifyAnything/src/common.h b/plugins/NotifyAnything/src/common.h index fc58f65940..ff1f9c2588 100644 --- a/plugins/NotifyAnything/src/common.h +++ b/plugins/NotifyAnything/src/common.h @@ -1,34 +1,26 @@ -// disable warnings about underscore in stdc functions
-#pragma warning(disable: 4996)
+#define _CRT_SECURE_NO_DEPRECATE
#include <windows.h>
-
-#include <string.h>
-#include <stdio.h>
-#include <winsock.h>
#include <time.h>
-#include <stdio.h>
#include <direct.h>
#include <process.h>
-#include <sys/types.h>
-#include <sys/timeb.h>
-
#include <string>
#include <map>
#include <set>
#include <vector>
#include "newpluginapi.h"
-#include "m_system_cpp.h"
#include "m_options.h"
#include "m_skin.h"
#include "m_langpack.h"
#include "m_database.h"
-#include "m_utils.h"
-
#include "m_popup.h"
+
#include "m_LogService.h"
+#include "resource.h"
+#include "Version.h"
+
extern HINSTANCE hInst;
const char PlugName[] = "NotifyAnything";
|