summaryrefslogtreecommitdiff
path: root/src/xine-utils/xineutils.h
diff options
context:
space:
mode:
authorFrantišek Dvořák <valtri@users.sourceforge.net>2003-12-13 11:35:07 +0000
committerFrantišek Dvořák <valtri@users.sourceforge.net>2003-12-13 11:35:07 +0000
commit6e8e94faf64728ff0124b0ccbe67071264153ec6 (patch)
tree5e07043ebcb9a0150272024b70498042870a0e97 /src/xine-utils/xineutils.h
parentd8a33d0e2516597b8a337ad65a9c9526d07fed28 (diff)
downloadxine-lib-6e8e94faf64728ff0124b0ccbe67071264153ec6.tar.gz
xine-lib-6e8e94faf64728ff0124b0ccbe67071264153ec6.tar.bz2
Update win32 MSVC build:
* internal names cleanup * http input plugin uses http_helper.c * fix change in audio_directx * MSVC stoped compile xineui because of 'this', mysterious * change non-constand array lengths to malloc/free, it good for such old compilers as my MSVC 6.0 * change lprintf macro for MSVC to compile again (I don't know, how use variable number of macro arguments in MSVC...) * merge compiling of xine-utils and xine-engine CVS patchset: 5902 CVS date: 2003/12/13 11:35:07
Diffstat (limited to 'src/xine-utils/xineutils.h')
-rw-r--r--src/xine-utils/xineutils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-utils/xineutils.h b/src/xine-utils/xineutils.h
index 348904991..64a252f32 100644
--- a/src/xine-utils/xineutils.h
+++ b/src/xine-utils/xineutils.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: xineutils.h,v 1.74 2003/12/13 01:47:35 f1rmb Exp $
+ * $Id: xineutils.h,v 1.75 2003/12/13 11:35:08 valtri Exp $
*
*/
#ifndef XINEUTILS_H
@@ -903,7 +903,7 @@ void xine_hexdump (const char *buf, int length);
#define lprintf(fmt, args...) do {} while(0)
#else
#ifdef _MSC_VER
- #define lprintf do {} while(0)
+ #define lprintf
#else
#define lprintf(...) do {} while(0)
#endif /* _MSC_VER */