summaryrefslogtreecommitdiff
path: root/plugins/FlashAvatars/src/stdafx.h
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2014-07-29 14:50:23 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2014-07-29 14:50:23 +0000
commit47daa65b633626f8e902f00a769639b088b60726 (patch)
tree63cd0bb5dddd7a8952c86c3b526630212d57b281 /plugins/FlashAvatars/src/stdafx.h
parentf2f7c95e542cf5345ca020f100a1e4a3138c0ccf (diff)
FlashAvatars moved to deprrecated
git-svn-id: http://svn.miranda-ng.org/main/trunk@9982 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FlashAvatars/src/stdafx.h')
-rw-r--r--plugins/FlashAvatars/src/stdafx.h78
1 files changed, 0 insertions, 78 deletions
diff --git a/plugins/FlashAvatars/src/stdafx.h b/plugins/FlashAvatars/src/stdafx.h
deleted file mode 100644
index f571759135..0000000000
--- a/plugins/FlashAvatars/src/stdafx.h
+++ /dev/null
@@ -1,78 +0,0 @@
-// stdafx.h : include file for standard system include files,
-// or project specific include files that are used frequently, but
-// are changed infrequently
-
-#define _CRT_SECURE_NO_WARNINGS
-
-#pragma once
-#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
-#define BZ_NO_STDIO
-
-#ifdef _WIN32
-# define _WIN32_WINNT 0x0500
-# define _WIN32_IE 0x0501
-#endif
-
-#ifdef _DEBUG
-# define _STLP_DEBUG 1
-#endif
-
-#ifndef _WIN64
- #define _USE_32BIT_TIME_T
-#endif
-
-#define _STLP_DONT_USE_SHORT_STRING_OPTIM 1 // Uses small string buffer, so it saves memory for a lot of strings
-#define _STLP_USE_PTR_SPECIALIZATIONS 1 // Reduces some code bloat
-#define _STLP_USE_TEMPLATE_EXPRESSION 1 // Speeds up string concatenation
-#define _STLP_NO_ANACHRONISMS 1
-
-#include <windows.h>
-#include <io.h>
-#include <fcntl.h>
-#include <Winsock2.h>
-
-#include <newpluginapi.h>
-#include <m_system_cpp.h>
-#include <m_database.h>
-#include <m_protosvc.h>
-#include <m_langpack.h>
-#include <m_avatars.h>
-#include <m_netlib.h>
-#include <m_clistint.h>
-#include <win2k.h>
-
-#include <m_folders.h>
-#include <m_flash.h>
-
-#include "CriticalSection.h"
-#include "TigerHash.h"
-#include "Version.h"
-#include "resource.h"
-
-#ifdef _DEBUG
-
-inline void _cdecl debugTrace(const char* format, ...)
-{
- va_list args;
- va_start(args, format);
-
- char buf[512];
-
- mir_vsnprintf(buf, sizeof(buf), format, args);
- OutputDebugStringA(buf);
- va_end(args);
-}
-
-# define debug debugTrace
-#define assert(exp) \
-do { if (!(exp)) { \
- debug("Assertion hit in %s(%d): " #exp "\n", __FILE__, __LINE__); \
- if(1 == _CrtDbgReport(_CRT_ASSERT, __FILE__, __LINE__, NULL, #exp)) \
-_CrtDbgBreak(); } } while(false)
-
-#else
-# define debug
-# define assert
-#endif
-
-