kernel32: No need for WINE_ prefixed debug output macros.

This commit is contained in:
André Hentschel 2012-01-10 22:29:08 +01:00 committed by Alexandre Julliard
parent 2650ba4b17
commit 3a82d3b23a
1 changed files with 3 additions and 4 deletions

View File

@ -177,15 +177,14 @@ static BOOL TERM_bind_libcurses(void)
if (!(nc_handle = wine_dlopen(ncname, RTLD_NOW, NULL, 0))) if (!(nc_handle = wine_dlopen(ncname, RTLD_NOW, NULL, 0)))
{ {
WINE_MESSAGE("Wine cannot find the " CURSES_NAME " library (%s).\n", MESSAGE("Wine cannot find the " CURSES_NAME " library (%s).\n", ncname);
ncname);
return FALSE; return FALSE;
} }
#define LOAD_FUNCPTR(f) \ #define LOAD_FUNCPTR(f) \
if((p_##f = wine_dlsym(nc_handle, #f, NULL, 0)) == NULL) \ if((p_##f = wine_dlsym(nc_handle, #f, NULL, 0)) == NULL) \
{ \ { \
WINE_WARN("Can't find symbol %s\n", #f); \ WARN("Can't find symbol %s\n", #f); \
goto sym_not_found; \ goto sym_not_found; \
} }
@ -199,7 +198,7 @@ static BOOL TERM_bind_libcurses(void)
return TRUE; return TRUE;
sym_not_found: sym_not_found:
WINE_MESSAGE( MESSAGE(
"Wine cannot find certain functions that it needs inside the " "Wine cannot find certain functions that it needs inside the "
CURSES_NAME "\nlibrary. To enable Wine to use " CURSES_NAME CURSES_NAME "\nlibrary. To enable Wine to use " CURSES_NAME
" please upgrade your " CURSES_NAME "\nlibraries\n"); " please upgrade your " CURSES_NAME "\nlibraries\n");