summaryrefslogtreecommitdiff
path: root/plugins/SmileyAdd/src/main.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-03-09 14:21:01 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-03-09 14:21:01 +0000
commite674d7f213a219f59cc066ec9268f416180d6031 (patch)
tree73fabd676588fbe872123d9f7ac1607901c2b43d /plugins/SmileyAdd/src/main.cpp
parentc11aeb37af849927d5cba20275aa118ae127d756 (diff)
added precompiled header
added version info git-svn-id: http://svn.miranda-ng.org/main/trunk@3939 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SmileyAdd/src/main.cpp')
-rw-r--r--plugins/SmileyAdd/src/main.cpp26
1 files changed, 9 insertions, 17 deletions
diff --git a/plugins/SmileyAdd/src/main.cpp b/plugins/SmileyAdd/src/main.cpp
index d4fb8c4988..b578227c0d 100644
--- a/plugins/SmileyAdd/src/main.cpp
+++ b/plugins/SmileyAdd/src/main.cpp
@@ -17,19 +17,11 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "smileys.h"
-#include "customsmiley.h"
-#include "services.h"
-#include "options.h"
-#include "download.h"
-#include "imagecache.h"
-#include "version.h"
-#include "m_metacontacts.h"
+#include "general.h"
//globals
HINSTANCE g_hInst;
HANDLE hEvent1, hContactMenuItem;
-extern LIST<void> menuHandleArray;
char* metaProtoName;
@@ -38,15 +30,15 @@ int hLangpack;
static const PLUGININFOEX pluginInfoEx =
{
sizeof(PLUGININFOEX),
- "SmileyAdd",
- __VERSION_DWORD,
- "Smiley support for Miranda NG.",
- "Peacow, nightwish, bid, borkra",
- "borkra@miranda-im.org",
- "Copyright© 2004 - 2012 Boris Krasnovskiy, portions by Rein-Peter de Boer",
- "http://miranda-ng.org/",
+ __PLUGIN_NAME,
+ PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
+ __DESCRIPTION,
+ __AUTHOR,
+ __AUTHOREMAIL,
+ __COPYRIGHT,
+ __AUTHORWEB,
UNICODE_AWARE,
- // {BD542BB4-5AE4-4d0e-A435-BA8DBE39607F}
+ // {BD542BB4-5AE4-4D0E-A435-BA8DBE39607F}
{0xbd542bb4, 0x5ae4, 0x4d0e, {0xa4, 0x35, 0xba, 0x8d, 0xbe, 0x39, 0x60, 0x7f}}
};