changeset 64:57b9709f6455 libavutil

Remove old MSVC remnants.
author diego
date Tue, 11 Jul 2006 14:15:56 +0000
parents e5a312df8a07
children 2840042b3f5d
files common.h
diffstat 1 files changed, 0 insertions(+), 15 deletions(-) [+]
line wrap: on
line diff
--- a/common.h	Sun Jul 09 10:56:39 2006 +0000
+++ b/common.h	Tue Jul 11 14:15:56 2006 +0000
@@ -6,14 +6,6 @@
 #ifndef COMMON_H
 #define COMMON_H
 
-#if defined(WIN32) && !defined(__MINGW32__) && !defined(__CYGWIN__)
-#    define CONFIG_WIN32
-#endif
-
-#if defined(WIN32) && !defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(EMULATE_INTTYPES)
-#    define EMULATE_INTTYPES
-#endif
-
 #ifndef M_PI
 #define M_PI    3.14159265358979323846
 #endif
@@ -292,19 +284,12 @@
 #    include <assert.h>
 
 /* dprintf macros */
-#    if defined(CONFIG_WIN32) && !defined(__MINGW32__) && !defined(__CYGWIN__)
-
-inline void dprintf(const char* fmt,...) {}
-
-#    else
-
 #        ifdef DEBUG
 #            define dprintf(fmt,...) av_log(NULL, AV_LOG_DEBUG, fmt, __VA_ARGS__)
 #        else
 #            define dprintf(fmt,...)
 #        endif
 
-#    endif /* !CONFIG_WIN32 */
 #    ifdef CONFIG_WINCE
 #            define abort()
 #    endif