diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-07 19:15:09 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-04-07 19:15:09 +0000 |
commit | f096b29abb03618ec609ba4acaedaed43eec1fea (patch) | |
tree | 03df06dd3b8449dac0e345255cf7bceb48b436a2 /plugins/YARelay | |
parent | b6f8f6519957a7edd57242ce43c01514998fc5e4 (diff) |
removed not used headers
git-svn-id: http://svn.miranda-ng.org/main/trunk@4372 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/YARelay')
-rw-r--r-- | plugins/YARelay/res/yaRelay.rc | 12 | ||||
-rw-r--r-- | plugins/YARelay/src/Version.h | 8 | ||||
-rw-r--r-- | plugins/YARelay/src/main.cpp | 1 | ||||
-rw-r--r-- | plugins/YARelay/src/stdafx.h | 8 |
4 files changed, 14 insertions, 15 deletions
diff --git a/plugins/YARelay/res/yaRelay.rc b/plugins/YARelay/res/yaRelay.rc index 4da7b25f1c..36762e9af5 100644 --- a/plugins/YARelay/res/yaRelay.rc +++ b/plugins/YARelay/res/yaRelay.rc @@ -26,7 +26,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US // Dialog
//
-IDD_SETTINGS DIALOG DISCARDABLE 0, 0, 308, 187
+IDD_SETTINGS DIALOGEX 0, 0, 308, 187
STYLE WS_CHILD
FONT 8, "MS Sans Serif"
BEGIN
@@ -94,18 +94,18 @@ END // TEXTINCLUDE
//
-1 TEXTINCLUDE DISCARDABLE
+1 TEXTINCLUDE
BEGIN
- "resource.h\0"
+ "..\\src\\resource.h\0"
END
-2 TEXTINCLUDE DISCARDABLE
+2 TEXTINCLUDE
BEGIN
"#include ""afxres.h""\r\n"
"\0"
END
-3 TEXTINCLUDE DISCARDABLE
+3 TEXTINCLUDE
BEGIN
"\r\n"
"\0"
@@ -120,7 +120,7 @@ END //
#ifdef APSTUDIO_INVOKED
-GUIDELINES DESIGNINFO DISCARDABLE
+GUIDELINES DESIGNINFO
BEGIN
IDD_SETTINGS, DIALOG
BEGIN
diff --git a/plugins/YARelay/src/Version.h b/plugins/YARelay/src/Version.h index 91273cc872..a6bbc6da8e 100644 --- a/plugins/YARelay/src/Version.h +++ b/plugins/YARelay/src/Version.h @@ -5,10 +5,10 @@ #define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
-#define __PLUGIN_NAME "yaRelay"
-#define __FILENAME "yaRelay.dll"
-#define __DESCRIPTION "Forwards messages to some contact when you are not available."
-#define __AUTHOR "Anar Ibragimoff"
+#define __PLUGIN_NAME "YARelay"
+#define __FILENAME "YARelay.dll"
+#define __DESCRIPTION "Forwards messages to some contact when you are not available."
+#define __AUTHOR "Anar Ibragimoff"
#define __AUTHOREMAIL "ai91@mail.ru"
#define __AUTHORWEB "http://miranda-ng.org/"
#define __COPYRIGHT "© 2005 Anar Ibragimoff"
diff --git a/plugins/YARelay/src/main.cpp b/plugins/YARelay/src/main.cpp index 950cb625b5..6453a68f62 100644 --- a/plugins/YARelay/src/main.cpp +++ b/plugins/YARelay/src/main.cpp @@ -18,7 +18,6 @@ Features: */
#include "stdafx.h"
-#include "Version.h"
#include "..\Utils\mir_buffer.h"
diff --git a/plugins/YARelay/src/stdafx.h b/plugins/YARelay/src/stdafx.h index fc4057b92f..cc74ee704e 100644 --- a/plugins/YARelay/src/stdafx.h +++ b/plugins/YARelay/src/stdafx.h @@ -21,20 +21,20 @@ Features: #include <windows.h>
#include <time.h>
-#include <stdio.h>
-#include <list>
-#include "resource.h"
+#include <malloc.h>
#include <newpluginapi.h>
#include <m_clistint.h>
#include <m_database.h>
-#include <m_system_cpp.h>
#include <m_langpack.h>
#include <m_contacts.h>
#include <m_options.h>
#include <m_protosvc.h>
#include <win2k.h>
+#include "resource.h"
+#include "Version.h"
+
#define STATUS_OFFLINE 0x1
#define STATUS_ONLINE 0x2
#define STATUS_AWAY 0x4
|