Commit 3a82d3b2 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

kernel32: No need for WINE_ prefixed debug output macros.

parent 2650ba4b
......@@ -177,15 +177,14 @@ static BOOL TERM_bind_libcurses(void)
if (!(nc_handle = wine_dlopen(ncname, RTLD_NOW, NULL, 0)))
{
WINE_MESSAGE("Wine cannot find the " CURSES_NAME " library (%s).\n",
ncname);
MESSAGE("Wine cannot find the " CURSES_NAME " library (%s).\n", ncname);
return FALSE;
}
#define LOAD_FUNCPTR(f) \
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; \
}
......@@ -199,7 +198,7 @@ static BOOL TERM_bind_libcurses(void)
return TRUE;
sym_not_found:
WINE_MESSAGE(
MESSAGE(
"Wine cannot find certain functions that it needs inside the "
CURSES_NAME "\nlibrary. To enable Wine to use " CURSES_NAME
" please upgrade your " CURSES_NAME "\nlibraries\n");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment