From e25c14e08c794d27bb90bfeeaf11ce31f9fc65d4 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Wed, 5 Mar 2008 08:12:11 +0000 Subject: [PATCH] remove unneeded definitions define cmp_name as __cdecl svn path=/trunk/; revision=32568 --- reactos/lib/3rdparty/libwine/debug.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/reactos/lib/3rdparty/libwine/debug.c b/reactos/lib/3rdparty/libwine/debug.c index 845f6f9af96..4dff5eae48c 100644 --- a/reactos/lib/3rdparty/libwine/debug.c +++ b/reactos/lib/3rdparty/libwine/debug.c @@ -35,9 +35,6 @@ #include #include -#define KEY_QUERY_VALUE 1 -#define REG_SZ 1 - ULONG __cdecl DbgPrint( @@ -57,7 +54,7 @@ static struct __wine_debug_functions funcs; static void debug_init(void); -static int cmp_name( const void *p1, const void *p2 ) +static int __cdecl cmp_name( const void *p1, const void *p2 ) { const char *name = p1; const struct __wine_debug_channel *chan = p2;