Converted to the new debug interface, using script written by Patrik
Stridvall.
diff --git a/console/generic.c b/console/generic.c
index 5a4bbdf..d45813a 100644
--- a/console/generic.c
+++ b/console/generic.c
@@ -14,7 +14,7 @@
#include "console.h"
#include "config.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(console)
@@ -26,7 +26,7 @@
/* Here, we only want to add a driver if there is not one already
defined. */
- TRACE(console, "GENERIC_Start\n");
+ TRACE("GENERIC_Start\n");
if (!driver.clearWindow)
driver.clearWindow = GENERIC_ClearWindow;
@@ -72,7 +72,7 @@
char trow, tcol;
int old_refresh, x;
- TRACE(console, "Scroll Up %d lines from %d to %d.\n", lines, row1,
+ TRACE("Scroll Up %d lines from %d to %d.\n", lines, row1,
row2);
/* Abort if we have only partial functionality */
@@ -146,7 +146,7 @@
int x;
- TRACE(console, "Clear Line: %d from %d to %d.\n", row, col1, col2);
+ TRACE("Clear Line: %d from %d to %d.\n", row, col1, col2);
for (x = col1; x <= col2; x++)
{
@@ -169,7 +169,7 @@
int bg_color, fg_color, attribute;
char ch;
- TRACE(console, "Move Line: Move %d to %d.\n", row1, row2);
+ TRACE("Move Line: Move %d to %d.\n", row1, row2);
for (x = col1; x <= col2; x++)
{
diff --git a/console/ncurses.c b/console/ncurses.c
index 1893730..3ac9b99 100644
--- a/console/ncurses.c
+++ b/console/ncurses.c
@@ -21,7 +21,7 @@
driver, it should make sure to perserve the old values.
*/
-#include "debug.h"
+#include "debugtools.h"
#include "options.h"
DEFAULT_DEBUG_CHANNEL(console)
@@ -107,7 +107,7 @@
if (waddch(stdscr, output | COLOR_PAIR(pair)) == ERR)
{
NCURSES_GetCursorPosition(&row, &col);
- FIXME(console, "NCURSES: waddch() failed at %d, %d.\n", row, col);
+ FIXME("NCURSES: waddch() failed at %d, %d.\n", row, col);
}
}
@@ -148,7 +148,7 @@
void NCURSES_MoveCursor(char row, char col)
{
if (wmove(stdscr, row, col) == ERR)
- FIXME(console, "NCURSES: wmove() failed to %d, %d.\n", row, col);
+ FIXME("NCURSES: wmove() failed to %d, %d.\n", row, col);
}
void NCURSES_GetCursorPosition(char *row, char *col)
@@ -201,7 +201,7 @@
case WINE_CYAN: return COLOR_CYAN;
}
- FIXME(console, "Unable to allocate color %d (%s)\n", color,
+ FIXME("Unable to allocate color %d (%s)\n", color,
color_names[color]);
/* Don't allocate a color... yet */
@@ -242,7 +242,7 @@
calls ResizeScreen(). It is meant to resize the ncurses internal
data structures to know about the new window dimensions. */
- TRACE(console, "Terminal resized to y: %d, x: %d\n", y, x);
+ TRACE("Terminal resized to y: %d, x: %d\n", y, x);
resizeterm(y, x);
}
@@ -267,7 +267,7 @@
{
if ((fg_color == fg[x]) && (bg_color == bg[x]))
{
- TRACE(console, "Color pair: already allocated\n");
+ TRACE("Color pair: already allocated\n");
return x;
}
}
@@ -276,7 +276,7 @@
current++;
fg[current] = fg_color;
bg[current] = bg_color;
- TRACE(console, "Color pair: allocated.\n");
+ TRACE("Color pair: allocated.\n");
return init_pair(current, fg_color, bg_color);
}
diff --git a/console/xterm.c b/console/xterm.c
index b94a624..8c2e7bc 100644
--- a/console/xterm.c
+++ b/console/xterm.c
@@ -19,7 +19,7 @@
#include "console.h"
#include "options.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(console)
@@ -139,7 +139,7 @@
execlp(console_xterm_prog, console_xterm_prog, buf, "-fg",
"white", "-bg", "black", "-g",
xterm_resolution, NULL);
- ERR(console, "error creating xterm (file not found?)\n");
+ ERR("error creating xterm (file not found?)\n");
exit(1);
}
@@ -155,7 +155,7 @@
usleep(100);
}
if (i > 10000) {
- WARN(console, "can't read xterm WID\n");
+ WARN("can't read xterm WID\n");
kill(*pid, SIGKILL);
return FALSE;
}
diff --git a/controls/combo.c b/controls/combo.c
index e58fbba..8732e23 100644
--- a/controls/combo.c
+++ b/controls/combo.c
@@ -17,7 +17,7 @@
#include "heap.h"
#include "combo.h"
#include "drive.h"
-#include "debug.h"
+#include "debugtools.h"
#include "tweak.h"
DEFAULT_DEBUG_CHANNEL(combo)
@@ -74,7 +74,7 @@
CBitHeight = bm.bmHeight;
CBitWidth = bm.bmWidth;
- TRACE(combo, "combo bitmap [%i,%i]\n", CBitWidth, CBitHeight );
+ TRACE("combo bitmap [%i,%i]\n", CBitWidth, CBitHeight );
hPrevB = SelectObject16( hDC, hComboBmp);
SetRect( &r, 0, 0, CBitWidth, CBitHeight );
@@ -119,7 +119,7 @@
if( !(wnd->dwExStyle & WS_EX_NOPARENTNOTIFY) )
lphc->wState |= CBF_NOTIFY;
- TRACE(combo, "[0x%08x], style = %08x\n",
+ TRACE("[0x%08x], style = %08x\n",
(UINT)lphc, lphc->dwStyle );
return (LRESULT)(UINT)wnd->hwndSelf;
@@ -137,7 +137,7 @@
{
WND* wnd = lphc->self;
- TRACE(combo,"[%04x]: freeing storage\n", CB_HWND(lphc));
+ TRACE("[%04x]: freeing storage\n", CB_HWND(lphc));
if( (CB_GETTYPE(lphc) != CBS_SIMPLE) && lphc->hWndLBox )
DestroyWindow( lphc->hWndLBox );
@@ -388,13 +388,13 @@
lprLB->right = lprLB->left + lphc->droppedWidth;
}
- TRACE(combo,"\ttext\t= (%i,%i-%i,%i)\n",
+ TRACE("\ttext\t= (%i,%i-%i,%i)\n",
lprEdit->left, lprEdit->top, lprEdit->right, lprEdit->bottom);
- TRACE(combo,"\tbutton\t= (%i,%i-%i,%i)\n",
+ TRACE("\tbutton\t= (%i,%i-%i,%i)\n",
lprButton->left, lprButton->top, lprButton->right, lprButton->bottom);
- TRACE(combo,"\tlbox\t= (%i,%i-%i,%i)\n",
+ TRACE("\tlbox\t= (%i,%i-%i,%i)\n",
lprLB->left, lprLB->top, lprLB->right, lprLB->bottom );
}
@@ -597,12 +597,12 @@
CBForceDummyResize(lphc);
}
- TRACE(combo,"init done\n");
+ TRACE("init done\n");
return wnd->hwndSelf;
}
- ERR(combo, "edit control failure.\n");
- } else ERR(combo, "listbox failure.\n");
- } else ERR(combo, "no owner for visible combo.\n");
+ ERR("edit control failure.\n");
+ } else ERR("listbox failure.\n");
+ } else ERR("no owner for visible combo.\n");
/* CreateWindow() will send WM_NCDESTROY to cleanup */
@@ -970,7 +970,7 @@
if( length > 0 )
pText = (LPSTR) HeapAlloc( GetProcessHeap(), 0, length + 1);
- TRACE(combo,"\t edit text length %i\n", length );
+ TRACE("\t edit text length %i\n", length );
if( pText )
{
@@ -1006,7 +1006,7 @@
INT length;
LPSTR pText = NULL;
- TRACE(combo,"\t %i\n", index );
+ TRACE("\t %i\n", index );
if( index == -1 )
{
@@ -1050,7 +1050,7 @@
INT index;
RECT rect;
- TRACE(combo,"[%04x]: drop down\n", CB_HWND(lphc));
+ TRACE("[%04x]: drop down\n", CB_HWND(lphc));
CB_NOTIFY( lphc, CBN_DROPDOWN );
@@ -1106,7 +1106,7 @@
if( IsWindow( hWnd ) && CB_GETTYPE(lphc) != CBS_SIMPLE )
{
- TRACE(combo,"[%04x]: roll up [%i]\n", CB_HWND(lphc), (INT)ok );
+ TRACE("[%04x]: roll up [%i]\n", CB_HWND(lphc), (INT)ok );
/* always send WM_LBUTTONUP? */
SendMessageA( lphc->hWndLBox, WM_LBUTTONUP, 0, (LPARAM)(-1) );
@@ -1252,7 +1252,7 @@
{
case (EN_SETFOCUS >> 8):
- TRACE(combo,"[%04x]: edit [%04x] got focus\n",
+ TRACE("[%04x]: edit [%04x] got focus\n",
CB_HWND(lphc), lphc->hWndEdit );
if( !(lphc->wState & CBF_FOCUSED) ) COMBO_SetFocus( lphc );
@@ -1260,7 +1260,7 @@
case (EN_KILLFOCUS >> 8):
- TRACE(combo,"[%04x]: edit [%04x] lost focus\n",
+ TRACE("[%04x]: edit [%04x] lost focus\n",
CB_HWND(lphc), lphc->hWndEdit );
/* NOTE: it seems that Windows' edit control sends an
@@ -1301,7 +1301,7 @@
case LBN_SELCHANGE:
case LBN_SELCANCEL:
- TRACE(combo,"[%04x]: lbox selection change [%04x]\n",
+ TRACE("[%04x]: lbox selection change [%04x]\n",
CB_HWND(lphc), lphc->wState );
/* do not roll up if selection is being tracked
@@ -1335,7 +1335,7 @@
{
HWND hWnd = lphc->self->hwndSelf;
- TRACE(combo,"[%04x]: ownerdraw op %04x\n", CB_HWND(lphc), msg );
+ TRACE("[%04x]: ownerdraw op %04x\n", CB_HWND(lphc), msg );
#define lpIS ((LPDELETEITEMSTRUCT)lParam)
@@ -1690,7 +1690,7 @@
LPHEADCOMBO lphc = CB_GETPTR(pWnd);
HWND hwnd = pWnd->hwndSelf;
- TRACE(combo, "[%04x]: msg %s wp %08x lp %08lx\n",
+ TRACE("[%04x]: msg %s wp %08x lp %08lx\n",
pWnd->hwndSelf, SPY_GetMsgName(message), wParam, lParam );
if( lphc || message == WM_NCCREATE )
@@ -1964,7 +1964,7 @@
case CB_GETEXTENDEDUI:
return (lphc->wState & CBF_EUI) ? TRUE : FALSE;
case (WM_USER + 0x1B):
- WARN(combo, "[%04x]: undocumented msg!\n", hwnd );
+ WARN("[%04x]: undocumented msg!\n", hwnd );
}
return DefWindowProcA(hwnd, message, wParam, lParam);
}
diff --git a/controls/listbox.c b/controls/listbox.c
index 47cd85e..dbcf862 100644
--- a/controls/listbox.c
+++ b/controls/listbox.c
@@ -17,8 +17,8 @@
#include "debugtools.h"
#include "tweak.h"
+DEFAULT_DEBUG_CHANNEL(listbox)
DECLARE_DEBUG_CHANNEL(combo)
-DECLARE_DEBUG_CHANNEL(listbox)
/* Unimplemented yet:
* - LBS_NOSEL
@@ -106,13 +106,13 @@
LB_ITEMDATA *item;
LB_DESCR *descr = *(LB_DESCR **)wnd->wExtra;
- TRACE_(listbox)( "Listbox:\n" );
- TRACE_(listbox)( "hwnd=%04x descr=%08x heap=%08x items=%d top=%d\n",
+ TRACE( "Listbox:\n" );
+ TRACE( "hwnd=%04x descr=%08x heap=%08x items=%d top=%d\n",
wnd->hwndSelf, (UINT)descr, descr->heap, descr->nb_items,
descr->top_item );
for (i = 0, item = descr->items; i < descr->nb_items; i++, item++)
{
- TRACE_(listbox)( "%4d: %-40s %d %08lx %3d\n",
+ TRACE( "%4d: %-40s %d %08lx %3d\n",
i, item->str, item->selected, item->data, item->height );
}
}
@@ -324,7 +324,7 @@
if ((descr->height > descr->item_height) &&
(descr->height % descr->item_height))
{
- TRACE_(listbox)("[%04x]: changing height %d -> %d\n",
+ TRACE("[%04x]: changing height %d -> %d\n",
wnd->hwndSelf, descr->height,
descr->height - descr->height%descr->item_height );
SetWindowPos( wnd->hwndSelf, 0, 0, 0,
@@ -335,7 +335,7 @@
return;
}
}
- TRACE_(listbox)("[%04x]: new size = %d,%d\n",
+ TRACE("[%04x]: new size = %d,%d\n",
wnd->hwndSelf, descr->width, descr->height );
LISTBOX_UpdatePage( wnd, descr );
LISTBOX_UpdateScroll( wnd, descr );
@@ -464,7 +464,7 @@
if (action == ODA_FOCUS)
DrawFocusRect( hdc, rect );
else
- FIXME_(listbox)("called with an out of bounds index %d(%d) in owner draw, Not good.\n",index,descr->nb_items);
+ FIXME("called with an out of bounds index %d(%d) in owner draw, Not good.\n",index,descr->nb_items);
return;
}
dis.CtlType = ODT_LISTBOX;
@@ -481,7 +481,7 @@
if (wnd->dwStyle & WS_DISABLED) dis.itemState |= ODS_DISABLED;
dis.itemData = item ? item->data : 0;
dis.rcItem = *rect;
- TRACE_(listbox)("[%04x]: drawitem %d (%s) action=%02x "
+ TRACE("[%04x]: drawitem %d (%s) action=%02x "
"state=%02x rect=%d,%d-%d,%d\n",
wnd->hwndSelf, index, item ? item->str : "", action,
dis.itemState, rect->left, rect->top,
@@ -503,7 +503,7 @@
oldText = SetTextColor( hdc, GetSysColor(COLOR_HIGHLIGHTTEXT));
}
- TRACE_(listbox)("[%04x]: painting %d (%s) action=%02x "
+ TRACE("[%04x]: painting %d (%s) action=%02x "
"rect=%d,%d-%d,%d\n",
wnd->hwndSelf, index, item ? item->str : "", action,
rect->left, rect->top, rect->right, rect->bottom );
@@ -635,7 +635,7 @@
if(TRACE_ON(listbox))
dsprintf(listbox, "%hd ", descr->tabs[i]);
}
- TRACE_(listbox)("[%04x]: settabstops %s\n",
+ TRACE("[%04x]: settabstops %s\n",
wnd->hwndSelf, dbg_str(listbox));
}
else memcpy( descr->tabs, tabs, descr->nb_tabs * sizeof(INT) );
@@ -1015,7 +1015,7 @@
if (descr->style & LBS_OWNERDRAWVARIABLE)
{
if ((index < 0) || (index >= descr->nb_items)) return LB_ERR;
- TRACE_(listbox)("[%04x]: item %d height = %d\n",
+ TRACE("[%04x]: item %d height = %d\n",
wnd->hwndSelf, index, height );
descr->items[index].height = height;
LISTBOX_UpdateScroll( wnd, descr );
@@ -1023,7 +1023,7 @@
}
else if (height != descr->item_height)
{
- TRACE_(listbox)("[%04x]: new height = %d\n",
+ TRACE("[%04x]: new height = %d\n",
wnd->hwndSelf, height );
descr->item_height = height;
LISTBOX_UpdatePage( wnd, descr );
@@ -1045,7 +1045,7 @@
pos = descr->horz_extent - descr->width;
if (pos < 0) pos = 0;
if (!(diff = descr->horz_pos - pos)) return;
- TRACE_(listbox)("[%04x]: new horz pos = %d\n",
+ TRACE("[%04x]: new horz pos = %d\n",
wnd->hwndSelf, pos );
descr->horz_pos = pos;
LISTBOX_UpdateScroll( wnd, descr );
@@ -1067,7 +1067,7 @@
return LB_OKAY;
if (extent <= 0) extent = 1;
if (extent == descr->horz_extent) return LB_OKAY;
- TRACE_(listbox)("[%04x]: new horz extent = %d\n",
+ TRACE("[%04x]: new horz extent = %d\n",
wnd->hwndSelf, extent );
descr->horz_extent = extent;
if (descr->horz_pos > extent - descr->width)
@@ -1085,7 +1085,7 @@
{
width += 2; /* For left and right margin */
if (width == descr->column_width) return LB_OKAY;
- TRACE_(listbox)("[%04x]: new column width = %d\n",
+ TRACE("[%04x]: new column width = %d\n",
wnd->hwndSelf, width );
descr->column_width = width;
LISTBOX_UpdatePage( wnd, descr );
@@ -1108,7 +1108,7 @@
if (!(hdc = GetDCEx( wnd->hwndSelf, 0, DCX_CACHE )))
{
- ERR_(listbox)("unable to get DC.\n" );
+ ERR("unable to get DC.\n" );
return 16;
}
if (font) oldFont = SelectObject( hdc, font );
@@ -1340,7 +1340,7 @@
mis.itemHeight = descr->item_height;
SendMessageA( descr->owner, WM_MEASUREITEM, id, (LPARAM)&mis );
item->height = mis.itemHeight ? mis.itemHeight : 1;
- TRACE_(listbox)("[%04x]: measure item %d (%s) = %d\n",
+ TRACE("[%04x]: measure item %d (%s) = %d\n",
wnd->hwndSelf, index, str ? str : "", item->height );
}
@@ -1392,7 +1392,7 @@
return ret;
}
- TRACE_(listbox)("[%04x]: added item %d '%s'\n",
+ TRACE("[%04x]: added item %d '%s'\n",
wnd->hwndSelf, index, HAS_STRINGS(descr) ? new_str : "" );
return index;
}
@@ -1729,7 +1729,7 @@
WPARAM wParam, INT x, INT y )
{
INT index = LISTBOX_GetItemFromPoint( wnd, descr, x, y );
- TRACE_(listbox)("[%04x]: lbuttondown %d,%d item %d\n",
+ TRACE("[%04x]: lbuttondown %d,%d item %d\n",
wnd->hwndSelf, x, y, index );
if (!descr->caret_on && (GetFocus() == wnd->hwndSelf)) return 0;
if (index != -1)
@@ -2146,7 +2146,7 @@
{
if (!LISTBOX_Create( wnd, NULL ))
return -1;
- TRACE_(listbox)("creating wnd=%04x descr=%p\n",
+ TRACE("creating wnd=%04x descr=%p\n",
hwnd, *(LB_DESCR **)wnd->wExtra );
return 0;
}
@@ -2154,7 +2154,7 @@
return DefWindowProcA( hwnd, msg, wParam, lParam );
}
- TRACE_(listbox)("[%04x]: msg %s wp %08x lp %08lx\n",
+ TRACE("[%04x]: msg %s wp %08x lp %08lx\n",
wnd->hwndSelf, SPY_GetMsgName(msg), wParam, lParam );
switch(msg)
{
@@ -2531,7 +2531,7 @@
return DefWindowProcA( hwnd, msg, wParam, lParam );
default:
if ((msg >= WM_USER) && (msg < 0xc000))
- WARN_(listbox)("[%04x]: unknown msg %04x wp %08x lp %08lx\n",
+ WARN("[%04x]: unknown msg %04x wp %08x lp %08lx\n",
hwnd, msg, wParam, lParam );
return DefWindowProcA( hwnd, msg, wParam, lParam );
}
diff --git a/controls/menu.c b/controls/menu.c
index 9035912..f8ba522 100644
--- a/controls/menu.c
+++ b/controls/menu.c
@@ -30,7 +30,7 @@
#include "resource.h"
#include "tweak.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(menu)
@@ -261,7 +261,7 @@
dsprintf(menu, "NULL");
}
- TRACE(menu, "%s %s %s\n", prefix, dbg_str(menu), postfix);
+ TRACE("%s %s %s\n", prefix, dbg_str(menu), postfix);
}
#undef MENUOUT
@@ -283,10 +283,10 @@
}
else {
hMenu = 0;
- ERR(menu, "Unable to load default system menu\n" );
+ ERR("Unable to load default system menu\n" );
}
- TRACE(menu, "returning %x.\n", hMenu );
+ TRACE("returning %x.\n", hMenu );
return hMenu;
}
@@ -355,12 +355,12 @@
menu = (POPUPMENU*) USER_HEAP_LIN_ADDR(hPopupMenu);
menu->wFlags |= MF_SYSMENU;
- TRACE(menu,"GetSysMenu hMenu=%04x (%04x)\n", hMenu, hPopupMenu );
+ TRACE("GetSysMenu hMenu=%04x (%04x)\n", hMenu, hPopupMenu );
return hMenu;
}
DestroyMenu( hMenu );
}
- ERR(menu, "failed to load system menu!\n");
+ ERR("failed to load system menu!\n");
return 0;
}
@@ -526,7 +526,7 @@
break;
}
- TRACE(menu, "ret %d.\n", i );
+ TRACE("ret %d.\n", i );
return i;
}
@@ -624,7 +624,7 @@
static UINT MENU_FindItemByKey( HWND hwndOwner, HMENU hmenu,
UINT key, BOOL forceMenuChar )
{
- TRACE(menu,"\tlooking for '%c' in [%04x]\n", (char)key, (UINT16)hmenu );
+ TRACE("\tlooking for '%c' in [%04x]\n", (char)key, (UINT16)hmenu );
if (!IsMenu( hmenu ))
{
@@ -700,7 +700,7 @@
case HBMMENU_POPUP_MAXIMIZE:
case HBMMENU_POPUP_MINIMIZE:
default:
- FIXME(menu,"Magic 0x%08x not implemented\n", id);
+ FIXME("Magic 0x%08x not implemented\n", id);
return 0;
}
@@ -716,7 +716,7 @@
{
char *p;
- TRACE(menu, "dc=0x%04x owner=0x%04x (%d,%d)\n", hdc, hwndOwner, orgX, orgY);
+ TRACE("dc=0x%04x owner=0x%04x (%d,%d)\n", hdc, hwndOwner, orgX, orgY);
debug_print_menuitem("MENU_CalcItemSize: menuitem:", lpitem,
(menuBar ? " (MenuBar)" : ""));
@@ -734,7 +734,7 @@
SendMessageA( hwndOwner, WM_MEASUREITEM, 0, (LPARAM)&mis );
lpitem->rect.bottom += mis.itemHeight;
lpitem->rect.right += mis.itemWidth;
- TRACE(menu, "id=%04x size=%dx%d\n",
+ TRACE("id=%04x size=%dx%d\n",
lpitem->wID, mis.itemWidth, mis.itemHeight);
return;
}
@@ -807,7 +807,7 @@
- arrow_bitmap_width;
}
}
- TRACE(menu,"(%d,%d)-(%d,%d)\n", lpitem->rect.left, lpitem->rect.top, lpitem->rect.right, lpitem->rect.bottom);
+ TRACE("(%d,%d)-(%d,%d)\n", lpitem->rect.left, lpitem->rect.top, lpitem->rect.right, lpitem->rect.bottom);
}
@@ -900,7 +900,7 @@
if ((lprect == NULL) || (lppop == NULL)) return;
if (lppop->nItems == 0) return;
- TRACE(menu,"left=%d top=%d right=%d bottom=%d\n",
+ TRACE("left=%d top=%d right=%d bottom=%d\n",
lprect->left, lprect->top, lprect->right, lprect->bottom);
lppop->Width = lprect->right - lprect->left;
lppop->Height = 0;
@@ -920,7 +920,7 @@
if ((i != start) &&
(lpitem->fType & (MF_MENUBREAK | MF_MENUBARBREAK))) break;
- TRACE(menu, "calling MENU_CalcItemSize org=(%d, %d)\n",
+ TRACE("calling MENU_CalcItemSize org=(%d, %d)\n",
orgX, orgY );
debug_print_menuitem (" item: ", lpitem, "");
MENU_CalcItemSize( hdc, lpitem, hwndOwner, orgX, orgY, TRUE );
@@ -1002,7 +1002,7 @@
dis.hwndItem = hmenu;
dis.hDC = hdc;
dis.rcItem = lpitem->rect;
- TRACE(menu, "Ownerdraw: owner=%04x itemID=%d, itemState=%d, itemAction=%d, "
+ TRACE("Ownerdraw: owner=%04x itemID=%d, itemState=%d, itemAction=%d, "
"hwndItem=%04x, hdc=%04x, rcItem={%d,%d,%d,%d}\n", hwndOwner,
dis.itemID, dis.itemState, dis.itemAction, dis.hwndItem,
dis.hDC, dis.rcItem.left, dis.rcItem.top, dis.rcItem.right,
@@ -1011,7 +1011,7 @@
return;
}
- TRACE(menu, "rect={%d,%d,%d,%d}\n", lpitem->rect.left, lpitem->rect.top,
+ TRACE("rect={%d,%d,%d,%d}\n", lpitem->rect.left, lpitem->rect.top,
lpitem->rect.right,lpitem->rect.bottom);
if (menuBar && (lpitem->fType & MF_SEPARATOR)) return;
@@ -1266,7 +1266,7 @@
HBRUSH hPrevBrush = 0;
RECT rect;
- TRACE(menu,"wnd=0x%04x dc=0x%04x menu=0x%04x\n", hwnd, hdc, hmenu);
+ TRACE("wnd=0x%04x dc=0x%04x menu=0x%04x\n", hwnd, hdc, hmenu);
GetClientRect( hwnd, &rect );
@@ -1353,7 +1353,7 @@
goto END;
}
- TRACE(menu,"(%04x, %p, %p)\n", hDC, lprect, lppop);
+ TRACE("(%04x, %p, %p)\n", hDC, lprect, lppop);
hfontOld = SelectObject( hDC, hMenuFont);
@@ -1415,7 +1415,7 @@
{
HTASK16 hTask = 0;
- TRACE(menu,"patching resident popup: %04x %04x [%04x %04x]\n",
+ TRACE("patching resident popup: %04x %04x [%04x %04x]\n",
checkQueue, checkWnd ? checkWnd->hwndSelf : 0, pTPWnd->hmemTaskQ,
pTPWnd->owner ? pTPWnd->owner->hwndSelf : 0);
@@ -1455,7 +1455,7 @@
MENU_ReleaseTopPopupWnd();
return TRUE;
}
- else WARN(menu,"failed to patch resident popup.\n");
+ else WARN("failed to patch resident popup.\n");
}
}
MENU_ReleaseTopPopupWnd();
@@ -1473,7 +1473,7 @@
POPUPMENU *menu;
WND *wndOwner = NULL;
- TRACE(menu,"owner=0x%04x hmenu=0x%04x id=0x%04x x=0x%04x y=0x%04x xa=0x%04x ya=0x%04x\n",
+ TRACE("owner=0x%04x hmenu=0x%04x id=0x%04x x=0x%04x y=0x%04x xa=0x%04x ya=0x%04x\n",
hwndOwner, hmenu, id, x, y, xanchor, yanchor);
if (!(menu = (POPUPMENU *) USER_HEAP_LIN_ADDR( hmenu ))) return FALSE;
@@ -1591,7 +1591,7 @@
LPPOPUPMENU lppop;
HDC hdc;
- TRACE(menu, "owner=0x%04x menu=0x%04x index=0x%04x select=0x%04x\n", hwndOwner, hmenu, wIndex, sendMenuSelect);
+ TRACE("owner=0x%04x menu=0x%04x index=0x%04x select=0x%04x\n", hwndOwner, hmenu, wIndex, sendMenuSelect);
lppop = (POPUPMENU *) USER_HEAP_LIN_ADDR( hmenu );
if (!lppop->nItems) return;
@@ -1650,7 +1650,7 @@
INT i;
POPUPMENU *menu;
- TRACE(menu,"hwnd=0x%04x hmenu=0x%04x off=0x%04x\n", hwndOwner, hmenu, offset);
+ TRACE("hwnd=0x%04x hmenu=0x%04x off=0x%04x\n", hwndOwner, hmenu, offset);
menu = (POPUPMENU *) USER_HEAP_LIN_ADDR( hmenu );
if (!menu->items) return;
@@ -1770,7 +1770,7 @@
if (!(menu = (POPUPMENU *)USER_HEAP_LIN_ADDR(hMenu)))
{
- WARN(menu, "%04x not a menu handle\n",
+ WARN("%04x not a menu handle\n",
hMenu );
return NULL;
}
@@ -1788,13 +1788,13 @@
{
if (!MENU_FindItem( &hMenu, &pos, flags ))
{
- WARN(menu, "item %x not found\n",
+ WARN("item %x not found\n",
pos );
return NULL;
}
if (!(menu = (LPPOPUPMENU) USER_HEAP_LIN_ADDR(hMenu)))
{
- WARN(menu,"%04x not a menu handle\n",
+ WARN("%04x not a menu handle\n",
hMenu);
return NULL;
}
@@ -1805,7 +1805,7 @@
newItems = HeapAlloc( SystemHeap, 0, sizeof(MENUITEM) * (menu->nItems+1) );
if (!newItems)
{
- WARN(menu, "allocation failed\n" );
+ WARN("allocation failed\n" );
return NULL;
}
if (menu->nItems > 0)
@@ -1844,7 +1844,7 @@
res += sizeof(WORD);
}
if (!IS_STRING_ITEM(flags))
- ERR(menu, "not a string item %04x\n", flags );
+ ERR("not a string item %04x\n", flags );
str = res;
if (!unicode) res += strlen(str) + 1;
else res += (lstrlenW((LPCWSTR)str) + 1) * sizeof(WCHAR);
@@ -1901,7 +1901,7 @@
{
LPSTR newstr = HEAP_strdupWtoA(GetProcessHeap(),
0, mii.dwTypeData);
- TRACE(menu, "Menu item: [%08x,%08x,%04x,%04x,%s]\n",
+ TRACE("Menu item: [%08x,%08x,%04x,%04x,%s]\n",
mii.fType, mii.fState, mii.wID, resinfo, newstr);
HeapFree( GetProcessHeap(), 0, newstr );
}
@@ -1956,7 +1956,7 @@
{
POPUPMENU *menu = (POPUPMENU*) USER_HEAP_LIN_ADDR( hmenu );;
- TRACE(menu,"owner=0x%04x hmenu=0x%04x 0x%04x\n", hwndOwner, hmenu, sendMenuSelect);
+ TRACE("owner=0x%04x hmenu=0x%04x 0x%04x\n", hwndOwner, hmenu, sendMenuSelect);
if (menu && uSubPWndLevel)
{
@@ -2007,7 +2007,7 @@
WND *wndPtr;
HDC hdc;
- TRACE(menu,"owner=0x%04x hmenu=0x%04x 0x%04x\n", hwndOwner, hmenu, selectFirst);
+ TRACE("owner=0x%04x hmenu=0x%04x 0x%04x\n", hwndOwner, hmenu, selectFirst);
if (!(menu = (POPUPMENU *) USER_HEAP_LIN_ADDR( hmenu ))) return hmenu;
@@ -2132,14 +2132,14 @@
MENUITEM *item;
POPUPMENU *menu = (POPUPMENU *) USER_HEAP_LIN_ADDR( hMenu );
- TRACE(menu,"%p hmenu=0x%04x\n", pmt, hMenu);
+ TRACE("%p hmenu=0x%04x\n", pmt, hMenu);
if (!menu || !menu->nItems ||
(menu->FocusedItem == NO_SELECTED_ITEM)) return 0;
item = &menu->items[menu->FocusedItem];
- TRACE(menu, "%08x %08x %08x\n",
+ TRACE("%08x %08x %08x\n",
hMenu, item->wID, item->hSubMenu);
if (!(item->fType & MF_POPUP))
@@ -2176,7 +2176,7 @@
POPUPMENU *ptmenu = (POPUPMENU *) USER_HEAP_LIN_ADDR( hPtMenu );
POPUPMENU *topmenu = (POPUPMENU *) USER_HEAP_LIN_ADDR( pmt->hTopMenu );
- TRACE(menu,"%p hmenu=0x%04x 0x%04x\n", pmt, hPtMenu, id);
+ TRACE("%p hmenu=0x%04x 0x%04x\n", pmt, hPtMenu, id);
if( pmt->hTopMenu != hPtMenu &&
!((ptmenu->wFlags | topmenu->wFlags) & MF_POPUP) )
@@ -2199,7 +2199,7 @@
*/
static BOOL MENU_ButtonDown( MTRACKER* pmt, HMENU hPtMenu )
{
- TRACE(menu,"%p hmenu=0x%04x\n", pmt, hPtMenu);
+ TRACE("%p hmenu=0x%04x\n", pmt, hPtMenu);
if (hPtMenu)
{
@@ -2239,7 +2239,7 @@
pmt->hCurrentMenu = MENU_ShowSubPopup( pmt->hOwnerWnd, hPtMenu, FALSE );
return TRUE;
}
- else WARN(menu, "\tunable to find clicked item!\n");
+ else WARN("\tunable to find clicked item!\n");
}
return FALSE;
}
@@ -2255,7 +2255,7 @@
*/
static INT MENU_ButtonUp( MTRACKER* pmt, HMENU hPtMenu )
{
- TRACE(menu,"%p hmenu=0x%04x\n", pmt, hPtMenu);
+ TRACE("%p hmenu=0x%04x\n", pmt, hPtMenu);
if (hPtMenu)
{
@@ -2339,7 +2339,7 @@
LRESULT l = SendMessageA( pmt->hOwnerWnd, WM_NEXTMENU, vk,
(IS_SYSTEM_MENU(menu)) ? GetSubMenu16(pmt->hTopMenu,0) : pmt->hTopMenu );
- TRACE(menu,"%04x [%04x] -> %04x [%04x]\n",
+ TRACE("%04x [%04x] -> %04x [%04x]\n",
(UINT16)pmt->hCurrentMenu, (UINT16)pmt->hOwnerWnd, LOWORD(l), HIWORD(l) );
if( l == 0 )
@@ -2395,7 +2395,7 @@
/* FIXME: Not sure what to do here, perhaps,
* try to track hNewMenu as a popup? */
- TRACE(menu," -- got confused.\n");
+ TRACE(" -- got confused.\n");
WIN_ReleaseWndPtr(wndPtr);
return FALSE;
}
@@ -2528,7 +2528,7 @@
POPUPMENU *menu = (POPUPMENU *) USER_HEAP_LIN_ADDR( pmt->hTopMenu );
UINT nextcol;
- TRACE(menu, "MENU_KeyRight called, cur %x (%s), top %x (%s).\n",
+ TRACE("MENU_KeyRight called, cur %x (%s), top %x (%s).\n",
pmt->hCurrentMenu,
((POPUPMENU *)USER_HEAP_LIN_ADDR(pmt->hCurrentMenu))->
items[0].text,
@@ -2548,7 +2548,7 @@
/* Check to see if there's another column */
if( (nextcol = MENU_GetStartOfNextColumn( pmt->hCurrentMenu )) !=
NO_SELECTED_ITEM ) {
- TRACE(menu, "Going to %d.\n", nextcol );
+ TRACE("Going to %d.\n", nextcol );
MENU_SelectItem( pmt->hOwnerWnd, pmt->hCurrentMenu,
nextcol, TRUE );
return;
@@ -2594,7 +2594,7 @@
mt.pt.x = x;
mt.pt.y = y;
- TRACE(menu,"hmenu=0x%04x flags=0x%08x (%d,%d) hwnd=0x%04x (%d,%d)-(%d,%d)\n",
+ TRACE("hmenu=0x%04x flags=0x%08x (%d,%d) hwnd=0x%04x (%d,%d)-(%d,%d)\n",
hmenu, wFlags, x, y, hwnd, (lprect) ? lprect->left : 0, (lprect) ? lprect->top : 0,
(lprect) ? lprect->right : 0, (lprect) ? lprect->bottom : 0);
@@ -2802,7 +2802,7 @@
static BOOL MENU_InitTracking(HWND hWnd, HMENU hMenu, BOOL bPopup)
{
- TRACE(menu, "hwnd=0x%04x hmenu=0x%04x\n", hWnd, hMenu);
+ TRACE("hwnd=0x%04x hmenu=0x%04x\n", hWnd, hMenu);
HideCaret(0);
SendMessageA( hWnd, WM_ENTERMENULOOP, bPopup, 0 );
@@ -2815,7 +2815,7 @@
*/
static BOOL MENU_ExitTracking(HWND hWnd)
{
- TRACE(menu, "hwnd=0x%04x\n", hWnd);
+ TRACE("hwnd=0x%04x\n", hWnd);
SendMessageA( hWnd, WM_EXITMENULOOP, 0, 0 );
ShowCaret(0);
@@ -2832,7 +2832,7 @@
HWND hWnd = wndPtr->hwndSelf;
HMENU hMenu = (ht == HTSYSMENU) ? wndPtr->hSysMenu : wndPtr->wIDmenu;
- TRACE(menu,"pwnd=%p ht=0x%04x (%ld,%ld)\n", wndPtr, ht, pt.x, pt.y);
+ TRACE("pwnd=%p ht=0x%04x (%ld,%ld)\n", wndPtr, ht, pt.x, pt.y);
if (IsMenu(hMenu))
{
@@ -2941,7 +2941,7 @@
BOOL WINAPI TrackPopupMenuEx( HMENU hMenu, UINT wFlags, INT x, INT y,
HWND hWnd, LPTPMPARAMS lpTpm )
{
- FIXME(menu, "not fully implemented\n" );
+ FIXME("not fully implemented\n" );
return TrackPopupMenu( hMenu, wFlags, x, y, 0, hWnd,
lpTpm ? &lpTpm->rcExclude : NULL );
}
@@ -2957,7 +2957,7 @@
WND* wndPtr = WIN_FindWndPtr(hwnd);
LRESULT retvalue;
- TRACE(menu,"hwnd=0x%04x msg=0x%04x wp=0x%04x lp=0x%08lx\n",
+ TRACE("hwnd=0x%04x msg=0x%04x wp=0x%04x lp=0x%08lx\n",
hwnd, message, wParam, lParam);
switch(message)
@@ -2997,7 +2997,7 @@
{
if( hwnd == pTopPopupWnd->hwndSelf )
{
- ERR(menu, "resident popup destroyed!\n");
+ ERR("resident popup destroyed!\n");
MENU_DestroyTopPopupWnd();
uSubPWndLevel = 0;
@@ -3013,7 +3013,7 @@
if( wParam )
{
if( !(*(HMENU*)wndPtr->wExtra) )
- ERR(menu,"no menu to display\n");
+ ERR("no menu to display\n");
}
else
*(HMENU*)wndPtr->wExtra = 0;
@@ -3054,7 +3054,7 @@
LPPOPUPMENU lppop;
UINT retvalue;
- TRACE(menu, "HWND 0x%x, width %d, at (%d, %d).\n",
+ TRACE("HWND 0x%x, width %d, at (%d, %d).\n",
hwnd, menubarWidth, orgX, orgY );
if (!(wndPtr = WIN_FindWndPtr( hwnd )))
@@ -3083,7 +3083,7 @@
BOOL16 WINAPI ChangeMenu16( HMENU16 hMenu, UINT16 pos, SEGPTR data,
UINT16 id, UINT16 flags )
{
- TRACE(menu,"menu=%04x pos=%d data=%08lx id=%04x flags=%04x\n",
+ TRACE("menu=%04x pos=%d data=%08lx id=%04x flags=%04x\n",
hMenu, pos, (DWORD)data, id, flags );
if (flags & MF_APPEND) return AppendMenu16( hMenu, flags & ~MF_APPEND,
id, data );
@@ -3109,7 +3109,7 @@
BOOL WINAPI ChangeMenuA( HMENU hMenu, UINT pos, LPCSTR data,
UINT id, UINT flags )
{
- TRACE(menu,"menu=%08x pos=%d data=%08lx id=%08x flags=%08x\n",
+ TRACE("menu=%08x pos=%d data=%08lx id=%08x flags=%08x\n",
hMenu, pos, (DWORD)data, id, flags );
if (flags & MF_APPEND) return AppendMenuA( hMenu, flags & ~MF_APPEND,
id, data );
@@ -3130,7 +3130,7 @@
BOOL WINAPI ChangeMenuW( HMENU hMenu, UINT pos, LPCWSTR data,
UINT id, UINT flags )
{
- TRACE(menu,"menu=%08x pos=%d data=%08lx id=%08x flags=%08x\n",
+ TRACE("menu=%08x pos=%d data=%08lx id=%08x flags=%08x\n",
hMenu, pos, (DWORD)data, id, flags );
if (flags & MF_APPEND) return AppendMenuW( hMenu, flags & ~MF_APPEND,
id, data );
@@ -3162,7 +3162,7 @@
MENUITEM *item;
DWORD ret;
- TRACE(menu,"menu=%04x id=%04x flags=%04x\n", hMenu, id, flags );
+ TRACE("menu=%04x id=%04x flags=%04x\n", hMenu, id, flags );
if (!(item = MENU_FindItem( &hMenu, &id, flags ))) return -1;
ret = item->fState & MF_CHECKED;
if (flags & MF_CHECKED) item->fState |= MF_CHECKED;
@@ -3188,7 +3188,7 @@
UINT oldflags;
MENUITEM *item;
- TRACE(menu,"(%04x, %04X, %04X) !\n",
+ TRACE("(%04x, %04X, %04X) !\n",
hMenu, wItemID, wFlags);
if (!(item = MENU_FindItem( &hMenu, &wItemID, wFlags )))
@@ -3218,14 +3218,14 @@
{
MENUITEM *item;
- TRACE(menu, "menu=%04x item=%04x ptr=%p len=%d flags=%04x\n",
+ TRACE("menu=%04x item=%04x ptr=%p len=%d flags=%04x\n",
hMenu, wItemID, str, nMaxSiz, wFlags );
if (!str || !nMaxSiz) return 0;
str[0] = '\0';
if (!(item = MENU_FindItem( &hMenu, &wItemID, wFlags ))) return 0;
if (!IS_STRING_ITEM(item->fType)) return 0;
lstrcpynA( str, item->text, nMaxSiz );
- TRACE(menu, "returning '%s'\n", str );
+ TRACE("returning '%s'\n", str );
return strlen(str);
}
@@ -3238,7 +3238,7 @@
{
MENUITEM *item;
- TRACE(menu, "menu=%04x item=%04x ptr=%p len=%d flags=%04x\n",
+ TRACE("menu=%04x item=%04x ptr=%p len=%d flags=%04x\n",
hMenu, wItemID, str, nMaxSiz, wFlags );
if (!str || !nMaxSiz) return 0;
str[0] = '\0';
@@ -3266,7 +3266,7 @@
UINT wHilite )
{
LPPOPUPMENU menu;
- TRACE(menu,"(%04x, %04x, %04x, %04x);\n",
+ TRACE("(%04x, %04x, %04x, %04x);\n",
hWnd, hMenu, wItemID, wHilite);
if (!MENU_FindItem( &hMenu, &wItemID, wHilite )) return FALSE;
if (!(menu = (LPPOPUPMENU) USER_HEAP_LIN_ADDR(hMenu))) return FALSE;
@@ -3292,7 +3292,7 @@
UINT WINAPI GetMenuState( HMENU hMenu, UINT wItemID, UINT wFlags )
{
MENUITEM *item;
- TRACE(menu,"(menu=%04x, id=%04x, flags=%04x);\n",
+ TRACE("(menu=%04x, id=%04x, flags=%04x);\n",
hMenu, wItemID, wFlags);
if (!(item = MENU_FindItem( &hMenu, &wItemID, wFlags ))) return -1;
debug_print_menuitem (" item: ", item, "");
@@ -3319,7 +3319,7 @@
{
LPPOPUPMENU menu = (LPPOPUPMENU) USER_HEAP_LIN_ADDR(hMenu);
if (!IS_A_MENU(menu)) return -1;
- TRACE(menu,"(%04x) returning %d\n",
+ TRACE("(%04x) returning %d\n",
hMenu, menu->nItems );
return menu->nItems;
}
@@ -3332,7 +3332,7 @@
{
LPPOPUPMENU menu = (LPPOPUPMENU) USER_HEAP_LIN_ADDR(hMenu);
if (!IS_A_MENU(menu)) return -1;
- TRACE(menu,"(%04x) returning %d\n",
+ TRACE("(%04x) returning %d\n",
hMenu, menu->nItems );
return menu->nItems;
}
@@ -3382,10 +3382,10 @@
MENUITEM *item;
if (IS_STRING_ITEM(flags) && str)
- TRACE(menu, "hMenu %04x, pos %d, flags %08x, "
+ TRACE("hMenu %04x, pos %d, flags %08x, "
"id %04x, str '%s'\n",
hMenu, pos, flags, id, str );
- else TRACE(menu, "hMenu %04x, pos %d, flags %08x, "
+ else TRACE("hMenu %04x, pos %d, flags %08x, "
"id %04x, str %08lx (not a string)\n",
hMenu, pos, flags, id, (DWORD)str );
@@ -3470,7 +3470,7 @@
LPPOPUPMENU menu;
MENUITEM *item;
- TRACE(menu,"(menu=%04x pos=%04x flags=%04x)\n",hMenu, nPos, wFlags);
+ TRACE("(menu=%04x pos=%04x flags=%04x)\n",hMenu, nPos, wFlags);
if (!(item = MENU_FindItem( &hMenu, &nPos, wFlags ))) return FALSE;
if (!(menu = (LPPOPUPMENU) USER_HEAP_LIN_ADDR(hMenu))) return FALSE;
@@ -3544,13 +3544,13 @@
if (IS_STRING_ITEM(flags))
{
- TRACE(menu, "%04x %d %04x %04x '%s'\n",
+ TRACE("%04x %d %04x %04x '%s'\n",
hMenu, pos, flags, id, str ? str : "#NULL#" );
if (!str) return FALSE;
}
else
{
- TRACE(menu, "%04x %d %04x %04x %08lx\n",
+ TRACE("%04x %d %04x %04x %08lx\n",
hMenu, pos, flags, id, (DWORD)str );
}
@@ -3628,7 +3628,7 @@
HBITMAP hNewUnCheck, HBITMAP hNewCheck)
{
MENUITEM *item;
- TRACE(menu,"(%04x, %04x, %04x, %04x, %04x)\n",
+ TRACE("(%04x, %04x, %04x, %04x, %04x)\n",
hMenu, nPos, wFlags, hNewCheck, hNewUnCheck);
if (!(item = MENU_FindItem( &hMenu, &nPos, wFlags ))) return FALSE;
@@ -3669,7 +3669,7 @@
menu->wMagic = MENU_MAGIC;
menu->FocusedItem = NO_SELECTED_ITEM;
- TRACE(menu, "return %04x\n", hMenu );
+ TRACE("return %04x\n", hMenu );
return hMenu;
}
@@ -3688,7 +3688,7 @@
*/
BOOL WINAPI DestroyMenu( HMENU hMenu )
{
- TRACE(menu,"(%04x)\n", hMenu);
+ TRACE("(%04x)\n", hMenu);
/* Silently ignore attempts to destroy default system popup */
@@ -3862,7 +3862,7 @@
{
WND * wndPtr = WIN_FindWndPtr(hWnd);
- TRACE(menu,"(%04x, %04x);\n", hWnd, hMenu);
+ TRACE("(%04x, %04x);\n", hWnd, hMenu);
if (wndPtr && !(wndPtr->dwStyle & WS_CHILD))
{
@@ -3990,11 +3990,11 @@
if (HIWORD(name))
{
char *str = (char *)PTR_SEG_TO_LIN( name );
- TRACE(menu, "(%04x,'%s')\n", instance, str );
+ TRACE("(%04x,'%s')\n", instance, str );
if (str[0] == '#') name = (SEGPTR)atoi( str + 1 );
}
else
- TRACE(menu,"(%04x,%04x)\n",instance,LOWORD(name));
+ TRACE("(%04x,%04x)\n",instance,LOWORD(name));
if (!name) return 0;
@@ -4042,12 +4042,12 @@
WORD version, offset;
LPCSTR p = (LPCSTR)template;
- TRACE(menu,"(%p)\n", template );
+ TRACE("(%p)\n", template );
version = GET_WORD(p);
p += sizeof(WORD);
if (version)
{
- WARN(menu, "version must be 0 for Win16\n" );
+ WARN("version must be 0 for Win16\n" );
return 0;
}
offset = GET_WORD(p);
@@ -4071,7 +4071,7 @@
WORD version, offset;
LPCSTR p = (LPCSTR)template;
- TRACE(menu,"%p\n", template );
+ TRACE("%p\n", template );
version = GET_WORD(p);
p += sizeof(WORD);
switch (version)
@@ -4097,7 +4097,7 @@
}
return hMenu;
default:
- ERR(menu, "version %d not supported.\n", version);
+ ERR("version %d not supported.\n", version);
return 0;
}
}
@@ -4342,7 +4342,7 @@
POPUPMENU *menu;
MENUITEM *item;
- TRACE(menu, "(0x%x,%d,%d)\n", hmenu, uItem, bypos);
+ TRACE("(0x%x,%d,%d)\n", hmenu, uItem, bypos);
if (!(menu = (POPUPMENU *) USER_HEAP_LIN_ADDR(hmenu))) return FALSE;
@@ -4390,7 +4390,7 @@
MENUITEM * item;
UINT i = 0;
- TRACE(menu, "(0x%x,%d,%d)\n", hmenu, bypos, flags);
+ TRACE("(0x%x,%d,%d)\n", hmenu, bypos, flags);
if (!(menu = (POPUPMENU *) USER_HEAP_LIN_ADDR(hmenu))) return -1;
@@ -4481,7 +4481,7 @@
MENUITEM *mifirst, *milast, *micheck;
HMENU mfirst = hMenu, mlast = hMenu, mcheck = hMenu;
- TRACE(menu, "ox%x: %d-%d, check %d, bypos=%d\n",
+ TRACE("ox%x: %d-%d, check %d, bypos=%d\n",
hMenu, first, last, check, bypos);
mifirst = MENU_FindItem (&mfirst, &first, bypos);
@@ -4535,7 +4535,7 @@
MENUITEM *item;
HWND referenceHwnd;
- TRACE(menu, "(0x%x,0x%x,%d,%p)\n", hwnd, hMenu, uItem, rect);
+ TRACE("(0x%x,0x%x,%d,%p)\n", hwnd, hMenu, uItem, rect);
item = MENU_FindItem (&hMenu, &uItem, MF_BYPOSITION);
referenceHwnd = hwnd;
@@ -4588,7 +4588,7 @@
{
POPUPMENU *menu;
- TRACE(menu,"(0x%04x %p)\n", hMenu, lpmi);
+ TRACE("(0x%04x %p)\n", hMenu, lpmi);
if (lpmi && (lpmi->cbSize==sizeof(MENUINFO)) && (menu=(POPUPMENU*)USER_HEAP_LIN_ADDR(hMenu)))
{
@@ -4623,7 +4623,7 @@
BOOL WINAPI GetMenuInfo (HMENU hMenu, LPMENUINFO lpmi)
{ POPUPMENU *menu;
- TRACE(menu,"(0x%04x %p)\n", hMenu, lpmi);
+ TRACE("(0x%04x %p)\n", hMenu, lpmi);
if (lpmi && (menu = (POPUPMENU *) USER_HEAP_LIN_ADDR(hMenu)))
{
@@ -4664,7 +4664,7 @@
{
LPPOPUPMENU menu;
- TRACE(menu,"(0x%04x 0x%08lx)\n", hMenu, dwContextHelpID);
+ TRACE("(0x%04x 0x%08lx)\n", hMenu, dwContextHelpID);
if ((menu = (POPUPMENU *) USER_HEAP_LIN_ADDR(hMenu)))
{
@@ -4689,7 +4689,7 @@
{
LPPOPUPMENU menu;
- TRACE(menu,"(0x%04x)\n", hMenu);
+ TRACE("(0x%04x)\n", hMenu);
if ((menu = (POPUPMENU *) USER_HEAP_LIN_ADDR(hMenu)))
{
diff --git a/controls/scroll.c b/controls/scroll.c
index 88ee856..56b5928 100644
--- a/controls/scroll.c
+++ b/controls/scroll.c
@@ -10,7 +10,7 @@
#include "scroll.h"
#include "heap.h"
#include "win.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(scroll)
@@ -708,7 +708,7 @@
return; /* Should never happen */
}
- TRACE(scroll, "Event: hwnd=%04x bar=%d msg=%x pt=%ld,%ld hit=%d\n",
+ TRACE("Event: hwnd=%04x bar=%d msg=%x pt=%ld,%ld hit=%d\n",
hwnd, nBar, msg, pt.x, pt.y, hittest );
switch(SCROLL_trackHitTest)
@@ -865,7 +865,7 @@
CREATESTRUCTA *lpCreat = (CREATESTRUCTA *)lParam;
if (lpCreat->style & SBS_SIZEBOX)
{
- FIXME(scroll, "Unimplemented style SBS_SIZEBOX.\n" );
+ FIXME("Unimplemented style SBS_SIZEBOX.\n" );
return 0;
}
@@ -893,7 +893,7 @@
}
}
if (!hUpArrow) SCROLL_LoadBitmaps();
- TRACE(scroll, "ScrollBar creation, hwnd=%04x\n", hwnd );
+ TRACE("ScrollBar creation, hwnd=%04x\n", hwnd );
return 0;
case WM_LBUTTONDOWN:
@@ -944,7 +944,7 @@
return 0; /* FIXME: return previous position */
case SBM_GETRANGE16:
- FIXME(scroll, "don't know how to handle SBM_GETRANGE16 (wp=%04x,lp=%08lx)\n", wParam, lParam );
+ FIXME("don't know how to handle SBM_GETRANGE16 (wp=%04x,lp=%08lx)\n", wParam, lParam );
return 0;
case SBM_GETRANGE:
@@ -973,13 +973,13 @@
case 0x00ed:
case 0x00ee:
case 0x00ef:
- ERR(scroll, "unknown Win32 msg %04x wp=%08x lp=%08lx\n",
+ ERR("unknown Win32 msg %04x wp=%08x lp=%08lx\n",
message, wParam, lParam );
break;
default:
if (message >= WM_USER)
- WARN(scroll, "unknown msg %04x wp=%04x lp=%08lx\n",
+ WARN("unknown msg %04x wp=%04x lp=%08lx\n",
message, wParam, lParam );
return DefWindowProcA( hwnd, message, wParam, lParam );
}
@@ -1103,7 +1103,7 @@
}
}
- TRACE(scroll, "hwnd=%04x bar=%d %s\n",
+ TRACE("hwnd=%04x bar=%d %s\n",
hwnd, nBar, dbg_str(scroll));
/* Make sure the page size is valid */
@@ -1119,7 +1119,7 @@
else if (infoPtr->CurVal > infoPtr->MaxVal - MAX( infoPtr->Page-1, 0 ))
infoPtr->CurVal = infoPtr->MaxVal - MAX( infoPtr->Page-1, 0 );
- TRACE(scroll, " new values: page=%d pos=%d min=%d max=%d\n",
+ TRACE(" new values: page=%d pos=%d min=%d max=%d\n",
infoPtr->Page, infoPtr->CurVal,
infoPtr->MinVal, infoPtr->MaxVal );
@@ -1397,7 +1397,7 @@
BOOL retvalue = FALSE;
if (!wndPtr) return FALSE;
- TRACE(scroll, "hwnd=%04x bar=%d horz=%d, vert=%d\n",
+ TRACE("hwnd=%04x bar=%d horz=%d, vert=%d\n",
hwnd, nBar, fShowH, fShowV );
switch(nBar)
@@ -1498,7 +1498,7 @@
BOOL bFineWithMe;
SCROLLBAR_INFO *infoPtr;
- TRACE(scroll, "%04x %d %d\n", hwnd, nBar, flags );
+ TRACE("%04x %d %d\n", hwnd, nBar, flags );
flags &= ESB_DISABLE_BOTH;
diff --git a/controls/static.c b/controls/static.c
index a6f21a4..1506d3b 100644
--- a/controls/static.c
+++ b/controls/static.c
@@ -11,7 +11,7 @@
#include "cursoricon.h"
#include "static.h"
#include "heap.h"
-#include "debug.h"
+#include "debugtools.h"
#include "tweak.h"
DEFAULT_DEBUG_CHANNEL(static)
@@ -64,7 +64,7 @@
if ((wndPtr->dwStyle & SS_TYPEMASK) != SS_ICON) return 0;
if (hicon && !info) {
- ERR(static, "huh? hicon!=0, but info=0???\n");
+ ERR("huh? hicon!=0, but info=0???\n");
return 0;
}
prevIcon = infoPtr->hIcon;
@@ -91,7 +91,7 @@
if ((wndPtr->dwStyle & SS_TYPEMASK) != SS_BITMAP) return 0;
if (hicon && !info) {
- ERR(static, "huh? hicon!=0, but info=0???\n");
+ ERR("huh? hicon!=0, but info=0???\n");
return 0;
}
prevIcon = infoPtr->hIcon;
@@ -127,7 +127,7 @@
LPSTR segname = SEGPTR_STRDUP(name);
if (HIWORD(wndPtr->hInstance))
- FIXME(static,"win16 window class, but win32 hinstance??\n");
+ FIXME("win16 window class, but win32 hinstance??\n");
hicon = LoadIcon16( wndPtr->hInstance, SEGPTR_GET(segname) );
SEGPTR_FREE(segname);
}
@@ -198,14 +198,14 @@
if (cs->lpszName)
STATIC_SetBitmap( wndPtr,
STATIC_LoadBitmap( wndPtr, cs->lpszName ));
- WARN(static, "style SS_BITMAP, dwStyle is 0x%08lx\n",
+ WARN("style SS_BITMAP, dwStyle is 0x%08lx\n",
wndPtr->dwStyle);
lResult = 1;
goto END;
}
if (!HIWORD(cs->lpszName) && (cs->lpszName))
{
- FIXME(static,"windowName is 0x%04x, not doing DefWindowProc\n",
+ FIXME("windowName is 0x%04x, not doing DefWindowProc\n",
LOWORD(cs->lpszName));
lResult = 1;
goto END;
@@ -216,7 +216,7 @@
case WM_CREATE:
if (style < 0L || style > SS_TYPEMASK)
{
- ERR(static, "Unknown style 0x%02lx\n", style );
+ ERR("Unknown style 0x%02lx\n", style );
lResult = -1L;
break;
}
diff --git a/controls/uitools.c b/controls/uitools.c
index e2ded59..b7251d5 100644
--- a/controls/uitools.c
+++ b/controls/uitools.c
@@ -6,7 +6,7 @@
*/
#include "winuser.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(graphics)
@@ -563,7 +563,7 @@
*/
BOOL WINAPI DrawEdge( HDC hdc, LPRECT rc, UINT edge, UINT flags )
{
- TRACE(graphics, "%04x %d,%d-%d,%d %04x %04x\n",
+ TRACE("%04x %d,%d-%d,%d %04x %04x\n",
hdc, rc->left, rc->top, rc->right, rc->bottom, edge, flags );
if(flags & BF_DIAGONAL)
@@ -929,7 +929,7 @@
return UITOOLS95_DFC_ButtonRadio(hdc, rc, uState);
default:
- WARN(graphics, "Invalid button state=0x%04x\n", uState);
+ WARN("Invalid button state=0x%04x\n", uState);
}
return FALSE;
@@ -1065,7 +1065,7 @@
break;
default:
- WARN(graphics, "Invalid caption; flags=0x%04x\n", uFlags);
+ WARN("Invalid caption; flags=0x%04x\n", uFlags);
return FALSE;
}
@@ -1235,7 +1235,7 @@
return TRUE;
default:
- WARN(graphics, "Invalid scroll; flags=0x%04x\n", uFlags);
+ WARN("Invalid scroll; flags=0x%04x\n", uFlags);
return FALSE;
}
@@ -1337,7 +1337,7 @@
break;
default:
- WARN(graphics, "Invalid menu; flags=0x%04x\n", uFlags);
+ WARN("Invalid menu; flags=0x%04x\n", uFlags);
retval = FALSE;
break;
}
@@ -1385,7 +1385,7 @@
case DFC_SCROLL:
return UITOOLS95_DrawFrameScroll(hdc, rc, uState);
default:
- WARN(graphics, "(%x,%p,%d,%x), bad type!\n",
+ WARN("(%x,%p,%d,%x), bad type!\n",
hdc,rc,uType,uState );
}
return FALSE;
diff --git a/dlls/advapi32/advapi.c b/dlls/advapi32/advapi.c
index da84723..b489b7c 100644
--- a/dlls/advapi32/advapi.c
+++ b/dlls/advapi32/advapi.c
@@ -12,7 +12,7 @@
#include "wine/winestring.h"
#include "heap.h"
-#include "debug.h"
+#include "debugtools.h"
/******************************************************************************
diff --git a/dlls/advapi32/crypt.c b/dlls/advapi32/crypt.c
index 34a9f53..b0f48c5 100644
--- a/dlls/advapi32/crypt.c
+++ b/dlls/advapi32/crypt.c
@@ -4,7 +4,7 @@
#include "windef.h"
#include "winerror.h"
#include "wincrypt.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(advapi)
@@ -26,7 +26,7 @@
CryptAcquireContextA( HCRYPTPROV *phProv, LPCSTR pszContainer,
LPCSTR pszProvider, DWORD dwProvType, DWORD dwFlags)
{
- FIXME(advapi,"(%p, %s, %s, %ld, %08lx): stub!\n", phProv, pszContainer,
+ FIXME_(advapi)("(%p, %s, %s, %ld, %08lx): stub!\n", phProv, pszContainer,
pszProvider, dwProvType, dwFlags);
return FALSE;
}
diff --git a/dlls/advapi32/eventlog.c b/dlls/advapi32/eventlog.c
index 54c5aae..f0b2151 100644
--- a/dlls/advapi32/eventlog.c
+++ b/dlls/advapi32/eventlog.c
@@ -9,7 +9,7 @@
#include "winerror.h"
#include "heap.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(advapi)
@@ -18,7 +18,7 @@
*/
BOOL WINAPI BackupEventLogA( HANDLE hEventLog, LPCSTR lpBackupFileName )
{
- FIXME(advapi,"stub\n");
+ FIXME("stub\n");
return TRUE;
}
@@ -32,7 +32,7 @@
BOOL WINAPI
BackupEventLogW( HANDLE hEventLog, LPCWSTR lpBackupFileName )
{
- FIXME(advapi,"stub\n");
+ FIXME("stub\n");
return TRUE;
}
@@ -41,7 +41,7 @@
*/
BOOL WINAPI ClearEventLogA ( HANDLE hEventLog, LPCSTR lpBackupFileName )
{
- FIXME(advapi,"stub\n");
+ FIXME("stub\n");
return TRUE;
}
@@ -50,7 +50,7 @@
*/
BOOL WINAPI ClearEventLogW ( HANDLE hEventLog, LPCWSTR lpBackupFileName )
{
- FIXME(advapi,"stub\n");
+ FIXME("stub\n");
return TRUE;
}
@@ -59,7 +59,7 @@
*/
BOOL WINAPI CloseEventLog ( HANDLE hEventLog )
{
- FIXME(advapi,"stub\n");
+ FIXME("stub\n");
return TRUE;
}
@@ -74,7 +74,7 @@
*/
BOOL WINAPI DeregisterEventSource( HANDLE hEventLog )
{
- FIXME(advapi, "(%d): stub\n",hEventLog);
+ FIXME("(%d): stub\n",hEventLog);
return TRUE;
}
@@ -88,7 +88,7 @@
BOOL WINAPI
GetNumberOfEventLogRecords( HANDLE hEventLog, PDWORD NumberOfRecords )
{
- FIXME(advapi,"stub\n");
+ FIXME("stub\n");
return TRUE;
}
@@ -102,7 +102,7 @@
BOOL WINAPI
GetOldestEventLogRecord( HANDLE hEventLog, PDWORD OldestRecord )
{
- FIXME(advapi,":stub\n");
+ FIXME(":stub\n");
return TRUE;
}
@@ -115,7 +115,7 @@
*/
BOOL WINAPI NotifyChangeEventLog( HANDLE hEventLog, HANDLE hEvent )
{
- FIXME(advapi,"stub\n");
+ FIXME("stub\n");
return TRUE;
}
@@ -125,7 +125,7 @@
HANDLE WINAPI
OpenBackupEventLogA( LPCSTR lpUNCServerName, LPCSTR lpFileName )
{
- FIXME(advapi,"stub\n");
+ FIXME("stub\n");
return TRUE;
}
@@ -139,7 +139,7 @@
HANDLE WINAPI
OpenBackupEventLogW( LPCWSTR lpUNCServerName, LPCWSTR lpFileName )
{
- FIXME(advapi,"stub\n");
+ FIXME("stub\n");
return TRUE;
}
@@ -148,7 +148,7 @@
*/
HANDLE WINAPI OpenEventLogA(LPCSTR uncname,LPCSTR source)
{
- FIXME(advapi,"(%s,%s),stub!\n",uncname,source);
+ FIXME("(%s,%s),stub!\n",uncname,source);
return 0xcafe4242;
}
@@ -162,7 +162,7 @@
HANDLE WINAPI
OpenEventLogW( LPCWSTR uncname, LPCWSTR source )
{
- FIXME(advapi,"stub\n");
+ FIXME("stub\n");
return TRUE;
}
@@ -172,7 +172,7 @@
BOOL WINAPI ReadEventLogA( HANDLE hEventLog, DWORD dwReadFlags, DWORD dwRecordOffset,
LPVOID lpBuffer, DWORD nNumberOfBytesToRead, DWORD *pnBytesRead, DWORD *pnMinNumberOfBytesNeeded )
{
- FIXME(advapi,"stub\n");
+ FIXME("stub\n");
return TRUE;
}
@@ -193,7 +193,7 @@
LPVOID lpBuffer, DWORD nNumberOfBytesToRead,
DWORD *pnBytesRead, DWORD *pnMinNumberOfBytesNeeded )
{
- FIXME(advapi,"stub\n");
+ FIXME("stub\n");
return TRUE;
}
@@ -225,7 +225,7 @@
HANDLE WINAPI
RegisterEventSourceW( LPCWSTR lpUNCServerName, LPCWSTR lpSourceName )
{
- FIXME(advapi, "(%s,%s): stub\n", debugstr_w(lpUNCServerName),
+ FIXME("(%s,%s): stub\n", debugstr_w(lpUNCServerName),
debugstr_w(lpSourceName));
return 1;
}
@@ -236,7 +236,7 @@
BOOL WINAPI ReportEventA ( HANDLE hEventLog, WORD wType, WORD wCategory, DWORD dwEventID,
PSID lpUserSid, WORD wNumStrings, DWORD dwDataSize, LPCSTR *lpStrings, LPVOID lpRawData)
{
- FIXME(advapi,"stub\n");
+ FIXME("stub\n");
return TRUE;
}
@@ -259,6 +259,6 @@
DWORD dwEventID, PSID lpUserSid, WORD wNumStrings,
DWORD dwDataSize, LPCWSTR *lpStrings, LPVOID lpRawData )
{
- FIXME(advapi,"stub\n");
+ FIXME("stub\n");
return TRUE;
}
diff --git a/dlls/advapi32/service.c b/dlls/advapi32/service.c
index 56082a4..9f5a727 100644
--- a/dlls/advapi32/service.c
+++ b/dlls/advapi32/service.c
@@ -9,7 +9,7 @@
#include "winreg.h"
#include "winerror.h"
#include "heap.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(advapi)
@@ -26,7 +26,7 @@
DWORD dwServiceState, LPVOID lpServices,
DWORD cbBufSize, LPDWORD pcbBytesNeeded,
LPDWORD lpServicesReturned, LPDWORD lpResumeHandle )
-{ FIXME (advapi,"%x type=%lx state=%lx %p %lx %p %p %p\n", hSCManager,
+{ FIXME("%x type=%lx state=%lx %p %lx %p %p %p\n", hSCManager,
dwServiceType, dwServiceState, lpServices, cbBufSize,
pcbBytesNeeded, lpServicesReturned, lpResumeHandle);
SetLastError (ERROR_ACCESS_DENIED);
@@ -41,7 +41,7 @@
{ LPSERVICE_TABLE_ENTRYA ptr = servent;
while (ptr->lpServiceName)
- { FIXME(advapi,"%s at %p\n", ptr->lpServiceName, ptr);
+ { FIXME("%s at %p\n", ptr->lpServiceName, ptr);
ptr++;
}
return TRUE;
@@ -59,7 +59,7 @@
LPSERVICE_MAIN_FUNCTIONW fpMain;
while (ptr->lpServiceName)
- { FIXME(advapi,"%s at %p): STUB.\n", debugstr_w(ptr->lpServiceName),ptr);
+ { FIXME("%s at %p): STUB.\n", debugstr_w(ptr->lpServiceName),ptr);
fpMain = ptr->lpServiceProc;
fpMain(0,NULL); /* try to start the service */
ptr++;
@@ -73,7 +73,7 @@
SERVICE_STATUS_HANDLE WINAPI
RegisterServiceCtrlHandlerA( LPSTR lpServiceName,
LPHANDLER_FUNCTION lpfHandler )
-{ FIXME(advapi,"%s %p\n", lpServiceName, lpfHandler);
+{ FIXME("%s %p\n", lpServiceName, lpfHandler);
return 0xcacacafe;
}
@@ -87,7 +87,7 @@
SERVICE_STATUS_HANDLE WINAPI
RegisterServiceCtrlHandlerW( LPWSTR lpServiceName,
LPHANDLER_FUNCTION lpfHandler )
-{ FIXME(advapi,"%s %p\n", debugstr_w(lpServiceName), lpfHandler);
+{ FIXME("%s %p\n", debugstr_w(lpServiceName), lpfHandler);
return 0xcacacafe;
}
@@ -100,14 +100,14 @@
*/
BOOL WINAPI
SetServiceStatus( SERVICE_STATUS_HANDLE hService, LPSERVICE_STATUS lpStatus )
-{ FIXME(advapi,"%lx %p\n",hService, lpStatus);
- TRACE(advapi,"\tType:%lx\n",lpStatus->dwServiceType);
- TRACE(advapi,"\tState:%lx\n",lpStatus->dwCurrentState);
- TRACE(advapi,"\tControlAccepted:%lx\n",lpStatus->dwControlsAccepted);
- TRACE(advapi,"\tExitCode:%lx\n",lpStatus->dwWin32ExitCode);
- TRACE(advapi,"\tServiceExitCode:%lx\n",lpStatus->dwServiceSpecificExitCode);
- TRACE(advapi,"\tCheckPoint:%lx\n",lpStatus->dwCheckPoint);
- TRACE(advapi,"\tWaitHint:%lx\n",lpStatus->dwWaitHint);
+{ FIXME("%lx %p\n",hService, lpStatus);
+ TRACE("\tType:%lx\n",lpStatus->dwServiceType);
+ TRACE("\tState:%lx\n",lpStatus->dwCurrentState);
+ TRACE("\tControlAccepted:%lx\n",lpStatus->dwControlsAccepted);
+ TRACE("\tExitCode:%lx\n",lpStatus->dwWin32ExitCode);
+ TRACE("\tServiceExitCode:%lx\n",lpStatus->dwServiceSpecificExitCode);
+ TRACE("\tCheckPoint:%lx\n",lpStatus->dwCheckPoint);
+ TRACE("\tWaitHint:%lx\n",lpStatus->dwWaitHint);
return TRUE;
}
@@ -147,7 +147,7 @@
OpenSCManagerW( LPCWSTR lpMachineName, LPCWSTR lpDatabaseName,
DWORD dwDesiredAccess )
{
- FIXME(advapi,"(%s,%s,0x%08lx): stub\n", debugstr_w(lpMachineName),
+ FIXME("(%s,%s,0x%08lx): stub\n", debugstr_w(lpMachineName),
debugstr_w(lpDatabaseName), dwDesiredAccess);
return 1;
}
@@ -186,7 +186,7 @@
ControlService( HANDLE hService, DWORD dwControl,
LPSERVICE_STATUS lpServiceStatus )
{
- FIXME(advapi, "(%d,%ld,%p): stub\n",hService,dwControl,lpServiceStatus);
+ FIXME("(%d,%ld,%p): stub\n",hService,dwControl,lpServiceStatus);
return TRUE;
}
@@ -206,7 +206,7 @@
BOOL WINAPI
CloseServiceHandle( HANDLE hSCObject )
{
- FIXME(advapi, "(%d): stub\n", hSCObject);
+ FIXME("(%d): stub\n", hSCObject);
return TRUE;
}
@@ -246,7 +246,7 @@
OpenServiceW(HANDLE hSCManager, LPCWSTR lpServiceName,
DWORD dwDesiredAccess)
{
- FIXME(advapi, "(%d,%p,%ld): stub\n",hSCManager, lpServiceName,
+ FIXME("(%d,%p,%ld): stub\n",hSCManager, lpServiceName,
dwDesiredAccess);
return 1;
}
@@ -264,7 +264,7 @@
LPCSTR lpDependencies, LPCSTR lpServiceStartName,
LPCSTR lpPassword )
{
- FIXME(advapi, "(%ld,%s,%s,...): stub\n",
+ FIXME("(%ld,%s,%s,...): stub\n",
hSCManager, debugstr_a(lpServiceName), debugstr_a(lpDisplayName));
return 1;
}
@@ -284,7 +284,7 @@
BOOL WINAPI
DeleteService( HANDLE hService )
{
- FIXME(advapi, "(%d): stub\n",hService);
+ FIXME("(%d): stub\n",hService);
return TRUE;
}
@@ -299,7 +299,7 @@
StartServiceA( HANDLE hService, DWORD dwNumServiceArgs,
LPCSTR *lpServiceArgVectors )
{
- FIXME(advapi, "(%d,%ld,%p): stub\n",hService,dwNumServiceArgs,lpServiceArgVectors);
+ FIXME("(%d,%ld,%p): stub\n",hService,dwNumServiceArgs,lpServiceArgVectors);
return TRUE;
}
@@ -322,7 +322,7 @@
StartServiceW( HANDLE hService, DWORD dwNumServiceArgs,
LPCWSTR *lpServiceArgVectors )
{
- FIXME(advapi, "(%d,%ld,%p): stub\n",hService,dwNumServiceArgs,
+ FIXME("(%d,%ld,%p): stub\n",hService,dwNumServiceArgs,
lpServiceArgVectors);
return TRUE;
}
@@ -341,7 +341,7 @@
BOOL WINAPI
QueryServiceStatus( HANDLE hService, LPVOID lpservicestatus )
{
- FIXME(advapi,"(%d,%p),stub!\n",hService,lpservicestatus);
+ FIXME("(%d,%p),stub!\n",hService,lpservicestatus);
return TRUE;
}
diff --git a/dlls/imagehlp/access.c b/dlls/imagehlp/access.c
index 793245c..bcf52e3 100644
--- a/dlls/imagehlp/access.c
+++ b/dlls/imagehlp/access.c
@@ -9,7 +9,7 @@
#include "winerror.h"
#include "windef.h"
#include "heap.h"
-#include "debug.h"
+#include "debugtools.h"
#include "imagehlp.h"
DEFAULT_DEBUG_CHANNEL(imagehlp)
@@ -44,7 +44,7 @@
PENUMLOADED_MODULES_CALLBACK EnumLoadedModulesCallback,
PVOID UserContext)
{
- FIXME(imagehlp, "(0x%08x, %p, %p): stub\n",
+ FIXME("(0x%08x, %p, %p): stub\n",
hProcess, EnumLoadedModulesCallback, UserContext
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -56,7 +56,7 @@
*/
DWORD WINAPI GetTimestampForLoadedLibrary(HMODULE Module)
{
- FIXME(imagehlp, "(0x%08x): stub\n", Module);
+ FIXME("(0x%08x): stub\n", Module);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
@@ -68,7 +68,7 @@
PLOADED_IMAGE LoadedImage,
PIMAGE_LOAD_CONFIG_DIRECTORY ImageConfigInformation)
{
- FIXME(imagehlp, "(%p, %p): stub\n",
+ FIXME("(%p, %p): stub\n",
LoadedImage, ImageConfigInformation
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -82,7 +82,7 @@
PLOADED_IMAGE LoadedImage,
LPDWORD SizeUnusedHeaderBytes)
{
- FIXME(imagehlp, "(%p, %p): stub\n",
+ FIXME("(%p, %p): stub\n",
LoadedImage, SizeUnusedHeaderBytes
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -95,7 +95,7 @@
PVOID WINAPI ImageDirectoryEntryToData(
PVOID Base, BOOLEAN MappedAsImage, USHORT DirectoryEntry, PULONG Size)
{
- FIXME(imagehlp, "(%p, %d, %d, %p): stub\n",
+ FIXME("(%p, %d, %d, %p): stub\n",
Base, MappedAsImage, DirectoryEntry, Size
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -127,7 +127,7 @@
PIMAGE_SECTION_HEADER WINAPI ImageRvaToSection(
PIMAGE_NT_HEADERS NtHeaders, PVOID Base, ULONG Rva)
{
- FIXME(imagehlp, "(%p, %p, %ld): stub\n", NtHeaders, Base, Rva);
+ FIXME("(%p, %p, %ld): stub\n", NtHeaders, Base, Rva);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return NULL;
}
@@ -139,7 +139,7 @@
PIMAGE_NT_HEADERS NtHeaders, PVOID Base, ULONG Rva,
PIMAGE_SECTION_HEADER *LastRvaSection)
{
- FIXME(imagehlp, "(%p, %p, %ld, %p): stub\n",
+ FIXME("(%p, %p, %ld, %p): stub\n",
NtHeaders, Base, Rva, LastRvaSection
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -215,7 +215,7 @@
hFile, NULL, PAGE_READONLY | SEC_COMMIT, 0, 0, NULL)))
{
DWORD dwLastError = GetLastError();
- WARN(imagehlp, "CreateFileMapping: Error = %ld\n", dwLastError);
+ WARN("CreateFileMapping: Error = %ld\n", dwLastError);
SetLastError(dwLastError);
goto Error;
}
@@ -226,7 +226,7 @@
hFileMapping, FILE_MAP_READ, 0, 0, 0)))
{
DWORD dwLastError = GetLastError();
- WARN(imagehlp, "MapViewOfFile: Error = %ld\n", dwLastError);
+ WARN("MapViewOfFile: Error = %ld\n", dwLastError);
SetLastError(dwLastError);
goto Error;
}
@@ -287,7 +287,7 @@
PLOADED_IMAGE LoadedImage,
PIMAGE_LOAD_CONFIG_DIRECTORY ImageConfigInformation)
{
- FIXME(imagehlp, "(%p, %p): stub\n",
+ FIXME("(%p, %p): stub\n",
LoadedImage, ImageConfigInformation
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -299,7 +299,7 @@
*/
BOOL WINAPI UnMapAndLoad(PLOADED_IMAGE LoadedImage)
{
- FIXME(imagehlp, "(%p): stub\n", LoadedImage);
+ FIXME("(%p): stub\n", LoadedImage);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
diff --git a/dlls/imagehlp/debug.c b/dlls/imagehlp/debug.c
index 8dc01e6..fec37f1 100644
--- a/dlls/imagehlp/debug.c
+++ b/dlls/imagehlp/debug.c
@@ -7,7 +7,7 @@
#include "winerror.h"
#include "winbase.h"
#include "windef.h"
-#include "debug.h"
+#include "debugtools.h"
#include "imagehlp.h"
DEFAULT_DEBUG_CHANNEL(imagehlp)
@@ -18,7 +18,7 @@
HANDLE WINAPI FindDebugInfoFile(
LPSTR FileName, LPSTR SymbolPath, LPSTR DebugFilePath)
{
- FIXME(imagehlp, "(%s, %s, %s): stub\n",
+ FIXME("(%s, %s, %s): stub\n",
debugstr_a(FileName), debugstr_a(SymbolPath),
debugstr_a(DebugFilePath)
);
@@ -32,7 +32,7 @@
HANDLE WINAPI FindExecutableImage(
LPSTR FileName, LPSTR SymbolPath, LPSTR ImageFilePath)
{
- FIXME(imagehlp, "(%s, %s, %s): stub\n",
+ FIXME("(%s, %s, %s): stub\n",
debugstr_a(FileName), debugstr_a(SymbolPath),
debugstr_a(ImageFilePath)
);
@@ -47,7 +47,7 @@
HANDLE FileHandle, LPSTR FileName,
LPSTR SymbolPath, DWORD ImageBase)
{
- FIXME(imagehlp, "(0x%08x, %s, %s, 0x%08lx): stub\n",
+ FIXME("(0x%08x, %s, %s, 0x%08lx): stub\n",
FileHandle, FileName, SymbolPath, ImageBase
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -65,7 +65,7 @@
PGET_MODULE_BASE_ROUTINE GetModuleBaseRoutine,
PTRANSLATE_ADDRESS_ROUTINE TranslateAddress)
{
- FIXME(imagehlp,
+ FIXME(
"(%ld, 0x%08x, 0x%08x, %p, %p, %p, %p, %p, %p): stub\n",
MachineType, hProcess, hThread, StackFrame, ContextRecord,
ReadMemoryRoutine, FunctionTableAccessRoutine,
@@ -82,7 +82,7 @@
LPCSTR DecoratedName, LPSTR UnDecoratedName,
DWORD UndecoratedLength, DWORD Flags)
{
- FIXME(imagehlp, "(%s, %s, %ld, 0x%08lx): stub\n",
+ FIXME("(%s, %s, %ld, 0x%08lx): stub\n",
debugstr_a(DecoratedName), debugstr_a(UnDecoratedName),
UndecoratedLength, Flags
);
@@ -97,7 +97,7 @@
BOOL WINAPI UnmapDebugInformation(
PIMAGE_DEBUG_INFORMATION DebugInfo)
{
- FIXME(imagehlp, "(%p): stub\n", DebugInfo);
+ FIXME("(%p): stub\n", DebugInfo);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
diff --git a/dlls/imagehlp/imagehlp_main.c b/dlls/imagehlp/imagehlp_main.c
index 4cf79b5..8d86a7a 100644
--- a/dlls/imagehlp/imagehlp_main.c
+++ b/dlls/imagehlp/imagehlp_main.c
@@ -8,7 +8,7 @@
#include "winerror.h"
#include "winbase.h"
#include "windef.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(imagehlp)
@@ -72,7 +72,7 @@
*/
BOOL WINAPI MakeSureDirectoryPathExists(LPCSTR DirPath)
{
- FIXME(imagehlp, "(%s): stub\n", debugstr_a(DirPath));
+ FIXME("(%s): stub\n", debugstr_a(DirPath));
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
@@ -89,7 +89,7 @@
BOOL WINAPI SearchTreeForFile(
LPSTR RootPath, LPSTR InputPathName, LPSTR OutputPathBuffer)
{
- FIXME(imagehlp, "(%s, %s, %s): stub\n",
+ FIXME("(%s, %s, %s): stub\n",
debugstr_a(RootPath), debugstr_a(InputPathName),
debugstr_a(OutputPathBuffer)
);
@@ -103,7 +103,7 @@
BOOL WINAPI TouchFileTimes(
HANDLE FileHandle, LPSYSTEMTIME lpSystemTime)
{
- FIXME(imagehlp, "(0x%08x, %p): stub\n",
+ FIXME("(0x%08x, %p): stub\n",
FileHandle, lpSystemTime
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
diff --git a/dlls/imagehlp/integrity.c b/dlls/imagehlp/integrity.c
index cbfd64e..34abf0a 100644
--- a/dlls/imagehlp/integrity.c
+++ b/dlls/imagehlp/integrity.c
@@ -8,7 +8,7 @@
#include "winbase.h"
#include "winerror.h"
#include "imagehlp.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(imagehlp)
@@ -19,7 +19,7 @@
BOOL WINAPI ImageAddCertificate(
HANDLE FileHandle, PWIN_CERTIFICATE Certificate, PDWORD Index)
{
- FIXME(imagehlp, "(0x%08x, %p, %p): stub\n",
+ FIXME("(0x%08x, %p, %p): stub\n",
FileHandle, Certificate, Index
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -33,7 +33,7 @@
HANDLE FileHandle, WORD TypeFilter, PDWORD CertificateCount,
PDWORD Indices, DWORD IndexCount)
{
- FIXME(imagehlp, "(0x%08x, %hd, %p, %p, %ld): stub\n",
+ FIXME("(0x%08x, %hd, %p, %p, %ld): stub\n",
FileHandle, TypeFilter, CertificateCount, Indices, IndexCount
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -47,7 +47,7 @@
HANDLE FileHandle, DWORD CertificateIndex,
PWIN_CERTIFICATE Certificate, PDWORD RequiredLength)
{
- FIXME(imagehlp, "(0x%08x, %ld, %p, %p): stub\n",
+ FIXME("(0x%08x, %ld, %p, %p): stub\n",
FileHandle, CertificateIndex, Certificate, RequiredLength
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -61,7 +61,7 @@
HANDLE FileHandle, DWORD CertificateIndex,
PWIN_CERTIFICATE Certificateheader)
{
- FIXME(imagehlp, "(0x%08x, %ld, %p): stub\n",
+ FIXME("(0x%08x, %ld, %p): stub\n",
FileHandle, CertificateIndex, Certificateheader
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -75,7 +75,7 @@
HANDLE FileHandle, DWORD DigestLevel,
DIGEST_FUNCTION DigestFunction, DIGEST_HANDLE DigestHandle)
{
- FIXME(imagehlp, "(%0x08x, %ld, %p, %p): stub\n",
+ FIXME("(%0x08x, %ld, %p, %p): stub\n",
FileHandle, DigestLevel, DigestFunction, DigestHandle
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -87,7 +87,7 @@
*/
BOOL WINAPI ImageRemoveCertificate(HANDLE FileHandle, DWORD Index)
{
- FIXME(imagehlp, "(0x%08x, %ld): stub\n", FileHandle, Index);
+ FIXME("(0x%08x, %ld): stub\n", FileHandle, Index);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
diff --git a/dlls/imagehlp/internal.c b/dlls/imagehlp/internal.c
index 0cfa33c..318920d 100644
--- a/dlls/imagehlp/internal.c
+++ b/dlls/imagehlp/internal.c
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "windef.h"
-#include "debug.h"
+#include "debugtools.h"
#include "imagehlp.h"
/***********************************************************************
diff --git a/dlls/imagehlp/modify.c b/dlls/imagehlp/modify.c
index fde8b53..fc97761 100644
--- a/dlls/imagehlp/modify.c
+++ b/dlls/imagehlp/modify.c
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "windef.h"
-#include "debug.h"
+#include "debugtools.h"
#include "imagehlp.h"
DEFAULT_DEBUG_CHANNEL(imagehlp)
@@ -28,7 +28,7 @@
DWORD Flags, LPSTR ImageName, LPSTR DllPath, LPSTR SymbolPath,
PIMAGEHLP_STATUS_ROUTINE StatusRoutine)
{
- FIXME(imagehlp, "(%ld, %s, %s, %s, %p): stub\n",
+ FIXME("(%ld, %s, %s, %s, %p): stub\n",
Flags, debugstr_a(ImageName), debugstr_a(DllPath),
debugstr_a(SymbolPath), StatusRoutine
);
@@ -43,7 +43,7 @@
LPVOID BaseAddress, DWORD FileLength,
LPDWORD HeaderSum, LPDWORD CheckSum)
{
- FIXME(imagehlp, "(%p, %ld, %p, %p): stub\n",
+ FIXME("(%p, %ld, %p, %p): stub\n",
BaseAddress, FileLength, HeaderSum, CheckSum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -56,7 +56,7 @@
DWORD WINAPI MapFileAndCheckSumA(
LPSTR Filename, LPDWORD HeaderSum, LPDWORD CheckSum)
{
- FIXME(imagehlp, "(%s, %p, %p): stub\n",
+ FIXME("(%s, %p, %p): stub\n",
debugstr_a(Filename), HeaderSum, CheckSum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -69,7 +69,7 @@
DWORD WINAPI MapFileAndCheckSumW(
LPWSTR Filename, LPDWORD HeaderSum, LPDWORD CheckSum)
{
- FIXME(imagehlp, "(%s, %p, %p): stub\n",
+ FIXME("(%s, %p, %p): stub\n",
debugstr_w(Filename), HeaderSum, CheckSum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -85,7 +85,7 @@
ULONG *OldImageSize, ULONG *OldImageBase, ULONG *NewImageSize,
ULONG *NewImageBase, ULONG TimeStamp)
{
- FIXME(imagehlp,
+ FIXME(
"(%s, %s, %d, %d, %d, %ld, %p, %p, %p, %p, %ld): stub\n",
debugstr_a(CurrentImageName),debugstr_a(SymbolPath), fReBase,
fRebaseSysfileOk, fGoingDown, CheckImageSize, OldImageSize,
@@ -101,7 +101,7 @@
BOOL WINAPI RemovePrivateCvSymbolic(
PCHAR DebugData, PCHAR *NewDebugData, ULONG *NewDebugSize)
{
- FIXME(imagehlp, "(%p, %p, %p): stub\n",
+ FIXME("(%p, %p, %p): stub\n",
DebugData, NewDebugData, NewDebugSize
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -113,7 +113,7 @@
*/
VOID WINAPI RemoveRelocations(PCHAR ImageName)
{
- FIXME(imagehlp, "(%p): stub\n", ImageName);
+ FIXME("(%p): stub\n", ImageName);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
}
@@ -124,7 +124,7 @@
LPSTR ImageName, LPSTR SymbolsPath,
LPSTR SymbolFilePath, DWORD Flags)
{
- FIXME(imagehlp, "(%s, %s, %s, %ld): stub\n",
+ FIXME("(%s, %s, %s, %ld): stub\n",
debugstr_a(ImageName), debugstr_a(SymbolsPath),
debugstr_a(SymbolFilePath), Flags
);
@@ -139,7 +139,7 @@
LPSTR ImageFileName, LPSTR SymbolPath,
LPSTR DebugFilePath, PIMAGE_NT_HEADERS NtHeaders)
{
- FIXME(imagehlp, "(%s, %s, %s, %p): stub\n",
+ FIXME("(%s, %s, %s, %p): stub\n",
debugstr_a(ImageFileName), debugstr_a(SymbolPath),
debugstr_a(DebugFilePath), NtHeaders
);
@@ -156,7 +156,7 @@
LPSTR ImageFileName, LPSTR SymbolPath, LPSTR DebugFilePath,
PIMAGE_NT_HEADERS NtHeaders, DWORD OldChecksum)
{
- FIXME(imagehlp, "(%s, %s, %s, %p, %ld): stub\n",
+ FIXME("(%s, %s, %s, %p, %ld): stub\n",
debugstr_a(ImageFileName), debugstr_a(SymbolPath),
debugstr_a(DebugFilePath), NtHeaders, OldChecksum
);
diff --git a/dlls/imagehlp/symbol.c b/dlls/imagehlp/symbol.c
index 7be5387..b271aee 100644
--- a/dlls/imagehlp/symbol.c
+++ b/dlls/imagehlp/symbol.c
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "windef.h"
-#include "debug.h"
+#include "debugtools.h"
#include "imagehlp.h"
DEFAULT_DEBUG_CHANNEL(imagehlp)
@@ -17,7 +17,7 @@
*/
BOOL WINAPI SymCleanup(HANDLE hProcess)
{
- FIXME(imagehlp, "(0x%08x): stub\n", hProcess);
+ FIXME("(0x%08x): stub\n", hProcess);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
@@ -30,7 +30,7 @@
HANDLE hProcess, PSYM_ENUMMODULES_CALLBACK EnumModulesCallback,
PVOID UserContext)
{
- FIXME(imagehlp, "(0x%08x, %p, %p): stub\n",
+ FIXME("(0x%08x, %p, %p): stub\n",
hProcess, EnumModulesCallback, UserContext
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -44,7 +44,7 @@
HANDLE hProcess, DWORD BaseOfDll,
PSYM_ENUMSYMBOLS_CALLBACK EnumSymbolsCallback, PVOID UserContext)
{
- FIXME(imagehlp, "(0x%08x, %p, %p): stub\n",
+ FIXME("(0x%08x, %p, %p): stub\n",
hProcess, EnumSymbolsCallback, UserContext
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -56,7 +56,7 @@
*/
PVOID WINAPI SymFunctionTableAccess(HANDLE hProcess, DWORD AddrBase)
{
- FIXME(imagehlp, "(0x%08x, 0x%08lx): stub\n", hProcess, AddrBase);
+ FIXME("(0x%08x, 0x%08lx): stub\n", hProcess, AddrBase);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
@@ -66,7 +66,7 @@
*/
DWORD WINAPI SymGetModuleBase(HANDLE hProcess, DWORD dwAddr)
{
- FIXME(imagehlp, "(0x%08x, 0x%08lx): stub\n", hProcess, dwAddr);
+ FIXME("(0x%08x, 0x%08lx): stub\n", hProcess, dwAddr);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
@@ -78,7 +78,7 @@
HANDLE hProcess, DWORD dwAddr,
PIMAGEHLP_MODULE ModuleInfo)
{
- FIXME(imagehlp, "(0x%08x, 0x%08lx, %p): stub\n",
+ FIXME("(0x%08x, 0x%08lx, %p): stub\n",
hProcess, dwAddr, ModuleInfo
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -90,7 +90,7 @@
*/
DWORD WINAPI SymGetOptions()
{
- FIXME(imagehlp, "(): stub\n");
+ FIXME("(): stub\n");
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
@@ -101,7 +101,7 @@
BOOL WINAPI SymGetSearchPath(
HANDLE hProcess, LPSTR szSearchPath, DWORD SearchPathLength)
{
- FIXME(imagehlp, "(0x%08x, %s, %ld): stub\n",
+ FIXME("(0x%08x, %s, %ld): stub\n",
hProcess, debugstr_an(szSearchPath,SearchPathLength), SearchPathLength
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -115,7 +115,7 @@
HANDLE hProcess, DWORD dwAddr,
PDWORD pdwDisplacement, PIMAGEHLP_SYMBOL Symbol)
{
- FIXME(imagehlp, "(0x%08x, 0x%08lx, %p, %p): stub\n",
+ FIXME("(0x%08x, 0x%08lx, %p, %p): stub\n",
hProcess, dwAddr, pdwDisplacement, Symbol
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -128,7 +128,7 @@
BOOL WINAPI SymGetSymFromName(
HANDLE hProcess, LPSTR Name, PIMAGEHLP_SYMBOL Symbol)
{
- FIXME(imagehlp, "(0x%08x, %s, %p): stub\n", hProcess, Name, Symbol);
+ FIXME("(0x%08x, %s, %p): stub\n", hProcess, Name, Symbol);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
@@ -139,7 +139,7 @@
BOOL WINAPI SymGetSymNext(
HANDLE hProcess, PIMAGEHLP_SYMBOL Symbol)
{
- FIXME(imagehlp, "(0x%08x, %p): stub\n", hProcess, Symbol);
+ FIXME("(0x%08x, %p): stub\n", hProcess, Symbol);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
@@ -151,7 +151,7 @@
BOOL WINAPI SymGetSymPrev(
HANDLE hProcess, PIMAGEHLP_SYMBOL Symbol)
{
- FIXME(imagehlp, "(0x%08x, %p): stub\n", hProcess, Symbol);
+ FIXME("(0x%08x, %p): stub\n", hProcess, Symbol);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
@@ -162,7 +162,7 @@
BOOL WINAPI SymInitialize(
HANDLE hProcess, LPSTR UserSearchPath, BOOL fInvadeProcess)
{
- FIXME(imagehlp, "(0x%08x, %s, %d): stub\n",
+ FIXME("(0x%08x, %s, %d): stub\n",
hProcess, debugstr_a(UserSearchPath), fInvadeProcess
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -177,7 +177,7 @@
HANDLE hProcess, HANDLE hFile, LPSTR ImageName, LPSTR ModuleName,
DWORD BaseOfDll, DWORD SizeOfDll)
{
- FIXME(imagehlp, "(0x%08x, 0x%08x, %s, %s, %ld, %ld): stub\n",
+ FIXME("(0x%08x, 0x%08x, %s, %s, %ld, %ld): stub\n",
hProcess, hFile, debugstr_a(ImageName), debugstr_a(ModuleName),
BaseOfDll, SizeOfDll
);
@@ -192,7 +192,7 @@
HANDLE hProcess, PSYMBOL_REGISTERED_CALLBACK CallbackFunction,
PVOID UserContext)
{
- FIXME(imagehlp, "(0x%08x, %p, %p): stub\n",
+ FIXME("(0x%08x, %p, %p): stub\n",
hProcess, CallbackFunction, UserContext
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -204,7 +204,7 @@
*/
DWORD WINAPI SymSetOptions(DWORD SymOptions)
{
- FIXME(imagehlp, "(%lx): stub\n", SymOptions);
+ FIXME("(%lx): stub\n", SymOptions);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0;
}
@@ -214,7 +214,7 @@
*/
BOOL WINAPI SymSetSearchPath(HANDLE hProcess, LPSTR szSearchPath)
{
- FIXME(imagehlp, "(0x%08x, %s): stub\n",
+ FIXME("(0x%08x, %s): stub\n",
hProcess, debugstr_a(szSearchPath)
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -227,7 +227,7 @@
BOOL WINAPI SymUnDName(
PIMAGEHLP_SYMBOL sym, LPSTR UnDecName, DWORD UnDecNameLength)
{
- FIXME(imagehlp, "(%p, %s, %ld): stub\n",
+ FIXME("(%p, %s, %ld): stub\n",
sym, UnDecName, UnDecNameLength
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -240,7 +240,7 @@
BOOL WINAPI SymUnloadModule(
HANDLE hProcess, DWORD BaseOfDll)
{
- FIXME(imagehlp, "(0x%08x, 0x%08lx): stub\n", hProcess, BaseOfDll);
+ FIXME("(0x%08x, 0x%08lx): stub\n", hProcess, BaseOfDll);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
diff --git a/dlls/msacm/msacm_main.c b/dlls/msacm/msacm_main.c
index 77c196f..8133987 100644
--- a/dlls/msacm/msacm_main.c
+++ b/dlls/msacm/msacm_main.c
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "msacm.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(msacm)
@@ -16,7 +16,7 @@
*/
DWORD WINAPI acmGetVersion16()
{
- FIXME(msacm, "(): stub\n");
+ FIXME("(): stub\n");
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return 0; /* FIXME */
}
@@ -28,7 +28,7 @@
MMRESULT16 WINAPI acmMetrics16(
HACMOBJ16 hao, UINT16 uMetric, LPVOID pMetric)
{
- FIXME(msacm, "(0x%04x, %d, %p): stub\n", hao, uMetric, pMetric);
+ FIXME("(0x%04x, %d, %p): stub\n", hao, uMetric, pMetric);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -39,7 +39,7 @@
MMRESULT16 WINAPI acmDriverEnum16(
ACMDRIVERENUMCB16 fnCallback, DWORD dwInstance, DWORD fdwEnum)
{
- FIXME(msacm, "(%p, %ld, %ld): stub\n",
+ FIXME("(%p, %ld, %ld): stub\n",
fnCallback, dwInstance, fdwEnum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -53,7 +53,7 @@
MMRESULT16 WINAPI acmDriverDetails16(
HACMDRIVERID16 hadid, LPACMDRIVERDETAILS16 padd, DWORD fdwDetails)
{
- FIXME(msacm, "(0x%04x, %p, %ld): stub\n", hadid, padd, fdwDetails);
+ FIXME("(0x%04x, %p, %ld): stub\n", hadid, padd, fdwDetails);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -65,7 +65,7 @@
LPHACMDRIVERID16 phadid, HINSTANCE16 hinstModule,
LPARAM lParam, DWORD dwPriority, DWORD fdwAdd)
{
- FIXME(msacm, "(%p, 0x%04x, %ld, %ld, %ld): stub\n",
+ FIXME("(%p, 0x%04x, %ld, %ld, %ld): stub\n",
phadid, hinstModule, lParam, dwPriority, fdwAdd
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -78,7 +78,7 @@
MMRESULT16 WINAPI acmDriverRemove16(
HACMDRIVERID16 hadid, DWORD fdwRemove)
{
- FIXME(msacm, "(0x%04x, %ld): stub\n", hadid, fdwRemove);
+ FIXME("(0x%04x, %ld): stub\n", hadid, fdwRemove);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -89,7 +89,7 @@
MMRESULT16 WINAPI acmDriverOpen16(
LPHACMDRIVER16 phad, HACMDRIVERID16 hadid, DWORD fdwOpen)
{
- FIXME(msacm, "(%p, 0x%04x, %ld): stub\n", phad, hadid, fdwOpen);
+ FIXME("(%p, 0x%04x, %ld): stub\n", phad, hadid, fdwOpen);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -100,7 +100,7 @@
MMRESULT16 WINAPI acmDriverClose16(
HACMDRIVER16 had, DWORD fdwClose)
{
- FIXME(msacm, "(0x%04x, %ld): stub\n", had, fdwClose);
+ FIXME("(0x%04x, %ld): stub\n", had, fdwClose);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -111,7 +111,7 @@
LRESULT WINAPI acmDriverMessage16(
HACMDRIVER16 had, UINT16 uMsg, LPARAM lParam1, LPARAM lParam2)
{
- FIXME(msacm, "(0x%04x, %d, %ld, %ld): stub\n",
+ FIXME("(0x%04x, %d, %ld, %ld): stub\n",
had, uMsg, lParam1, lParam2
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -124,7 +124,7 @@
MMRESULT16 WINAPI acmDriverID16(
HACMOBJ16 hao, LPHACMDRIVERID16 phadid, DWORD fdwDriverID)
{
- FIXME(msacm, "(0x%04x, %p, %ld): stub\n", hao, phadid, fdwDriverID);
+ FIXME("(0x%04x, %p, %ld): stub\n", hao, phadid, fdwDriverID);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -135,7 +135,7 @@
MMRESULT16 WINAPI acmDriverPriority16(
HACMDRIVERID16 hadid, DWORD dwPriority, DWORD fdwPriority)
{
- FIXME(msacm, "(0x%04x, %ld, %ld): stub\n",
+ FIXME("(0x%04x, %ld, %ld): stub\n",
hadid, dwPriority, fdwPriority
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -148,7 +148,7 @@
MMRESULT16 WINAPI acmFormatTagDetails16(
HACMDRIVER16 had, LPACMFORMATTAGDETAILS16 paftd, DWORD fdwDetails)
{
- FIXME(msacm, "(0x%04x, %p, %ld): stub\n", had, paftd, fdwDetails);
+ FIXME("(0x%04x, %p, %ld): stub\n", had, paftd, fdwDetails);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -160,7 +160,7 @@
HACMDRIVER16 had, LPACMFORMATTAGDETAILS16 paftd,
ACMFORMATTAGENUMCB16 fnCallback, DWORD dwInstance, DWORD fdwEnum)
{
- FIXME(msacm, "(0x%04x, %p, %p, %ld, %ld): stub\n",
+ FIXME("(0x%04x, %p, %p, %ld, %ld): stub\n",
had, paftd, fnCallback, dwInstance, fdwEnum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -173,7 +173,7 @@
MMRESULT16 WINAPI acmFormatChoose16(
LPACMFORMATCHOOSE16 pafmtc)
{
- FIXME(msacm, "(%p): stub\n", pafmtc);
+ FIXME("(%p): stub\n", pafmtc);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -184,7 +184,7 @@
MMRESULT16 WINAPI acmFormatDetails16(
HACMDRIVER16 had, LPACMFORMATDETAILS16 pafd, DWORD fdwDetails)
{
- FIXME(msacm, "(0x%04x, %p, %ld): stub\n", had, pafd, fdwDetails);
+ FIXME("(0x%04x, %p, %ld): stub\n", had, pafd, fdwDetails);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -196,7 +196,7 @@
HACMDRIVER16 had, LPACMFORMATDETAILS16 pafd,
ACMFORMATENUMCB16 fnCallback, DWORD dwInstance, DWORD fdwEnum)
{
- FIXME(msacm, "(0x%04x, %p, %p, %ld, %ld): stub\n",
+ FIXME("(0x%04x, %p, %p, %ld, %ld): stub\n",
had, pafd, fnCallback, dwInstance, fdwEnum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -210,7 +210,7 @@
HACMDRIVER16 had, LPWAVEFORMATEX pwfxSrc,
LPWAVEFORMATEX pwfxDst, DWORD cbwfxDst, DWORD fdwSuggest)
{
- FIXME(msacm, "(0x%04x, %p, %p, %ld, %ld): stub\n",
+ FIXME("(0x%04x, %p, %p, %ld, %ld): stub\n",
had, pwfxSrc, pwfxDst, cbwfxDst, fdwSuggest
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -223,7 +223,7 @@
MMRESULT16 WINAPI acmFilterTagDetails16(
HACMDRIVER16 had, LPACMFILTERTAGDETAILS16 paftd, DWORD fdwDetails)
{
- FIXME(msacm, "(0x%04x, %p, %ld): stub\n", had, paftd, fdwDetails);
+ FIXME("(0x%04x, %p, %ld): stub\n", had, paftd, fdwDetails);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -235,7 +235,7 @@
HACMDRIVER16 had, LPACMFILTERTAGDETAILS16 paftd,
ACMFILTERTAGENUMCB16 fnCallback, DWORD dwInstance, DWORD fdwEnum)
{
- FIXME(msacm, "(0x%04x, %p, %p, %ld, %ld): stub\n",
+ FIXME("(0x%04x, %p, %p, %ld, %ld): stub\n",
had, paftd, fnCallback, dwInstance, fdwEnum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -248,7 +248,7 @@
MMRESULT16 WINAPI acmFilterChoose16(
LPACMFILTERCHOOSE16 pafltrc)
{
- FIXME(msacm, "(%p): stub\n", pafltrc);
+ FIXME("(%p): stub\n", pafltrc);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -259,7 +259,7 @@
MMRESULT16 WINAPI acmFilterDetails16(
HACMDRIVER16 had, LPACMFILTERDETAILS16 pafd, DWORD fdwDetails)
{
- FIXME(msacm, "(0x%04x, %p, %ld): stub\n", had, pafd, fdwDetails);
+ FIXME("(0x%04x, %p, %ld): stub\n", had, pafd, fdwDetails);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -271,7 +271,7 @@
HACMDRIVER16 had, LPACMFILTERDETAILS16 pafd,
ACMFILTERENUMCB16 fnCallback, DWORD dwInstance, DWORD fdwEnum)
{
- FIXME(msacm, "(0x%04x, %p, %p, %ld, %ld): stub\n",
+ FIXME("(0x%04x, %p, %p, %ld, %ld): stub\n",
had, pafd, fnCallback, dwInstance, fdwEnum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -287,7 +287,7 @@
LPWAVEFILTER pwfltr, DWORD dwCallback,
DWORD dwInstance, DWORD fdwOpen)
{
- FIXME(msacm, "(%p, 0x%04x, %p, %p, %p, %ld, %ld, %ld): stub\n",
+ FIXME("(%p, 0x%04x, %p, %p, %p, %ld, %ld, %ld): stub\n",
phas, had, pwfxSrc, pwfxDst, pwfltr,
dwCallback, dwInstance, fdwOpen
);
@@ -301,7 +301,7 @@
MMRESULT16 WINAPI acmStreamClose16(
HACMSTREAM16 has, DWORD fdwClose)
{
- FIXME(msacm, "(0x%04x, %ld): stub\n", has, fdwClose);
+ FIXME("(0x%04x, %ld): stub\n", has, fdwClose);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -313,7 +313,7 @@
HACMSTREAM16 has, DWORD cbInput,
LPDWORD pdwOutputBytes, DWORD fdwSize)
{
- FIXME(msacm, "(0x%04x, %ld, %p, %ld): stub\n",
+ FIXME("(0x%04x, %ld, %p, %ld): stub\n",
has, cbInput, pdwOutputBytes, fdwSize
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -326,7 +326,7 @@
MMRESULT16 WINAPI acmStreamConvert16(
HACMSTREAM16 has, LPACMSTREAMHEADER16 pash, DWORD fdwConvert)
{
- FIXME(msacm, "(0x%04x, %p, %ld): stub\n", has, pash, fdwConvert);
+ FIXME("(0x%04x, %p, %ld): stub\n", has, pash, fdwConvert);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -337,7 +337,7 @@
MMRESULT16 WINAPI acmStreamReset16(
HACMSTREAM16 has, DWORD fdwReset)
{
- FIXME(msacm, "(0x%04x, %ld): stub\n", has, fdwReset);
+ FIXME("(0x%04x, %ld): stub\n", has, fdwReset);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -348,7 +348,7 @@
MMRESULT16 WINAPI acmStreamPrepareHeader16(
HACMSTREAM16 has, LPACMSTREAMHEADER16 pash, DWORD fdwPrepare)
{
- FIXME(msacm, "(0x%04x, %p, %ld): stub\n", has, pash, fdwPrepare);
+ FIXME("(0x%04x, %p, %ld): stub\n", has, pash, fdwPrepare);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -359,7 +359,7 @@
MMRESULT16 WINAPI acmStreamUnprepareHeader16(
HACMSTREAM16 has, LPACMSTREAMHEADER16 pash, DWORD fdwUnprepare)
{
- FIXME(msacm, "(0x%04x, %p, %ld): stub\n",
+ FIXME("(0x%04x, %p, %ld): stub\n",
has, pash, fdwUnprepare
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
diff --git a/dlls/msacm32/builtin.c b/dlls/msacm32/builtin.c
index defe2ce..64476fa 100644
--- a/dlls/msacm32/builtin.c
+++ b/dlls/msacm32/builtin.c
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "windef.h"
-#include "debug.h"
+#include "debugtools.h"
#include "driver.h"
#include "heap.h"
#include "mmsystem.h"
diff --git a/dlls/msacm32/driver.c b/dlls/msacm32/driver.c
index 15bb225..43f39e6 100644
--- a/dlls/msacm32/driver.c
+++ b/dlls/msacm32/driver.c
@@ -8,7 +8,7 @@
#include "winerror.h"
#include "windef.h"
#include "winuser.h"
-#include "debug.h"
+#include "debugtools.h"
#include "driver.h"
#include "heap.h"
#include "mmsystem.h"
@@ -59,7 +59,7 @@
PHACMDRIVERID phadid, HINSTANCE hinstModule,
LPARAM lParam, DWORD dwPriority, DWORD fdwAdd)
{
- FIXME(msacm, "(%p, 0x%08x, %ld, %ld, %ld): stub\n",
+ FIXME("(%p, 0x%08x, %ld, %ld, %ld): stub\n",
phadid, hinstModule, lParam, dwPriority, fdwAdd
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -143,7 +143,7 @@
MMRESULT WINAPI acmDriverDetailsW(
HACMDRIVERID hadid, PACMDRIVERDETAILSW padd, DWORD fdwDetails)
{
- FIXME(msacm, "(0x%08x, %p, %ld): stub\n", hadid, padd, fdwDetails);
+ FIXME("(0x%08x, %p, %ld): stub\n", hadid, padd, fdwDetails);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -241,7 +241,7 @@
if(padid->pACMDriver)
{
/* FIXME: Is it allowed? */
- ERR(msacm, "Can't open driver twice\n");
+ ERR("Can't open driver twice\n");
return MMSYSERR_ERROR;
}
@@ -319,7 +319,7 @@
if(lError != ERROR_SUCCESS)
break;
- FIXME(msacm, "(0x%08x, %ld, %ld): stub (partial)\n",
+ FIXME("(0x%08x, %ld, %ld): stub (partial)\n",
hadid, dwPriority, fdwPriority
);
break;
diff --git a/dlls/msacm32/filter.c b/dlls/msacm32/filter.c
index 67d6604..e12e194 100644
--- a/dlls/msacm32/filter.c
+++ b/dlls/msacm32/filter.c
@@ -9,7 +9,7 @@
#include "mmsystem.h"
#include "msacm.h"
#include "msacmdrv.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(msacm)
@@ -19,7 +19,7 @@
MMRESULT WINAPI acmFilterChooseA(
PACMFILTERCHOOSEA pafltrc)
{
- FIXME(msacm, "(%p): stub\n", pafltrc);
+ FIXME("(%p): stub\n", pafltrc);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -30,7 +30,7 @@
MMRESULT WINAPI acmFilterChooseW(
PACMFILTERCHOOSEW pafltrc)
{
- FIXME(msacm, "(%p): stub\n", pafltrc);
+ FIXME("(%p): stub\n", pafltrc);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -61,7 +61,7 @@
MMRESULT WINAPI acmFilterDetailsW(
HACMDRIVER had, PACMFILTERDETAILSW pafd, DWORD fdwDetails)
{
- FIXME(msacm, "(0x%08x, %p, %ld): stub\n", had, pafd, fdwDetails);
+ FIXME("(0x%08x, %p, %ld): stub\n", had, pafd, fdwDetails);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -73,7 +73,7 @@
HACMDRIVER had, PACMFILTERDETAILSA pafd,
ACMFILTERENUMCBA fnCallback, DWORD dwInstance, DWORD fdwEnum)
{
- FIXME(msacm, "(0x%08x, %p, %p, %ld, %ld): stub\n",
+ FIXME("(0x%08x, %p, %p, %ld, %ld): stub\n",
had, pafd, fnCallback, dwInstance, fdwEnum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -87,7 +87,7 @@
HACMDRIVER had, PACMFILTERDETAILSW pafd,
ACMFILTERENUMCBW fnCallback, DWORD dwInstance, DWORD fdwEnum)
{
- FIXME(msacm, "(0x%08x, %p, %p, %ld, %ld): stub\n",
+ FIXME("(0x%08x, %p, %p, %ld, %ld): stub\n",
had, pafd, fnCallback, dwInstance, fdwEnum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -122,7 +122,7 @@
MMRESULT WINAPI acmFilterTagDetailsW(
HACMDRIVER had, PACMFILTERTAGDETAILSW paftd, DWORD fdwDetails)
{
- FIXME(msacm, "(0x%08x, %p, %ld): stub\n", had, paftd, fdwDetails);
+ FIXME("(0x%08x, %p, %ld): stub\n", had, paftd, fdwDetails);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -134,7 +134,7 @@
HACMDRIVER had, PACMFILTERTAGDETAILSA paftd,
ACMFILTERTAGENUMCBA fnCallback, DWORD dwInstance, DWORD fdwEnum)
{
- FIXME(msacm, "(0x%08x, %p, %p, %ld, %ld): stub\n",
+ FIXME("(0x%08x, %p, %p, %ld, %ld): stub\n",
had, paftd, fnCallback, dwInstance, fdwEnum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -148,7 +148,7 @@
HACMDRIVER had, PACMFILTERTAGDETAILSW paftd,
ACMFILTERTAGENUMCBW fnCallback, DWORD dwInstance, DWORD fdwEnum)
{
- FIXME(msacm, "(0x%08x, %p, %p, %ld, %ld): stub\n",
+ FIXME("(0x%08x, %p, %p, %ld, %ld): stub\n",
had, paftd, fnCallback, dwInstance, fdwEnum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
diff --git a/dlls/msacm32/format.c b/dlls/msacm32/format.c
index 0d06c81..94b7973 100644
--- a/dlls/msacm32/format.c
+++ b/dlls/msacm32/format.c
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "windef.h"
-#include "debug.h"
+#include "debugtools.h"
#include "mmsystem.h"
#include "msacm.h"
#include "msacmdrv.h"
@@ -20,7 +20,7 @@
MMRESULT WINAPI acmFormatChooseA(
PACMFORMATCHOOSEA pafmtc)
{
- FIXME(msacm, "(%p): stub\n", pafmtc);
+ FIXME("(%p): stub\n", pafmtc);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -31,7 +31,7 @@
MMRESULT WINAPI acmFormatChooseW(
PACMFORMATCHOOSEW pafmtc)
{
- FIXME(msacm, "(%p): stub\n", pafmtc);
+ FIXME("(%p): stub\n", pafmtc);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -62,7 +62,7 @@
MMRESULT WINAPI acmFormatDetailsW(
HACMDRIVER had, PACMFORMATDETAILSW pafd, DWORD fdwDetails)
{
- FIXME(msacm, "(0x%08x, %p, %ld): stub\n", had, pafd, fdwDetails);
+ FIXME("(0x%08x, %p, %ld): stub\n", had, pafd, fdwDetails);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -74,7 +74,7 @@
HACMDRIVER had, PACMFORMATDETAILSA pafd,
ACMFORMATENUMCBA fnCallback, DWORD dwInstance, DWORD fdwEnum)
{
- FIXME(msacm, "(0x%08x, %p, %p, %ld, %ld): stub\n",
+ FIXME("(0x%08x, %p, %p, %ld, %ld): stub\n",
had, pafd, fnCallback, dwInstance, fdwEnum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -88,7 +88,7 @@
HACMDRIVER had, PACMFORMATDETAILSW pafd,
ACMFORMATENUMCBW fnCallback, DWORD dwInstance, DWORD fdwEnum)
{
- FIXME(msacm, "(0x%08x, %p, %p, %ld, %ld): stub\n",
+ FIXME("(0x%08x, %p, %p, %ld, %ld): stub\n",
had, pafd, fnCallback, dwInstance, fdwEnum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -102,7 +102,7 @@
HACMDRIVER had, PWAVEFORMATEX pwfxSrc, PWAVEFORMATEX pwfxDst,
DWORD cbwfxDst, DWORD fdwSuggest)
{
- FIXME(msacm, "(0x%08x, %p, %p, %ld, %ld): stub\n",
+ FIXME("(0x%08x, %p, %p, %ld, %ld): stub\n",
had, pwfxSrc, pwfxDst, cbwfxDst, fdwSuggest
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -136,7 +136,7 @@
MMRESULT WINAPI acmFormatTagDetailsW(
HACMDRIVER had, PACMFORMATTAGDETAILSW paftd, DWORD fdwDetails)
{
- FIXME(msacm, "(0x%08x, %p, %ld): stub\n", had, paftd, fdwDetails);
+ FIXME("(0x%08x, %p, %ld): stub\n", had, paftd, fdwDetails);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -148,7 +148,7 @@
HACMDRIVER had, PACMFORMATTAGDETAILSA paftd,
ACMFORMATTAGENUMCBA fnCallback, DWORD dwInstance, DWORD fdwEnum)
{
- FIXME(msacm, "(0x%08x, %p, %p, %ld, %ld): stub\n",
+ FIXME("(0x%08x, %p, %p, %ld, %ld): stub\n",
had, paftd, fnCallback, dwInstance, fdwEnum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -162,7 +162,7 @@
HACMDRIVER had, PACMFORMATTAGDETAILSW paftd,
ACMFORMATTAGENUMCBW fnCallback, DWORD dwInstance, DWORD fdwEnum)
{
- FIXME(msacm, "(0x%08x, %p, %p, %ld, %ld): stub\n",
+ FIXME("(0x%08x, %p, %p, %ld, %ld): stub\n",
had, paftd, fnCallback, dwInstance, fdwEnum
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
diff --git a/dlls/msacm32/internal.c b/dlls/msacm32/internal.c
index b1485e4..ca9f702 100644
--- a/dlls/msacm32/internal.c
+++ b/dlls/msacm32/internal.c
@@ -12,7 +12,7 @@
#include "mmsystem.h"
#include "msacm.h"
#include "msacmdrv.h"
-#include "debug.h"
+#include "debugtools.h"
/**********************************************************************/
diff --git a/dlls/msacm32/msacm32_main.c b/dlls/msacm32/msacm32_main.c
index d306545..34fc13d 100644
--- a/dlls/msacm32/msacm32_main.c
+++ b/dlls/msacm32/msacm32_main.c
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "windef.h"
-#include "debug.h"
+#include "debugtools.h"
#include "msacm.h"
#include "msacmdrv.h"
#include "winversion.h"
@@ -67,7 +67,7 @@
switch(VERSION_GetVersion())
{
default:
- FIXME(msacm, "%s not supported\n", VERSION_GetVersionName());
+ FIXME("%s not supported\n", VERSION_GetVersionName());
case WIN95:
return 0x04000000; /* 4.0.0 */
case NT40:
@@ -90,7 +90,7 @@
PWINE_ACMOBJ pao = MSACM_GetObj(hao);
BOOL bLocal = TRUE;
- FIXME(msacm, "(0x%08x, %d, %p): stub\n", hao, uMetric, pMetric);
+ FIXME("(0x%08x, %d, %p): stub\n", hao, uMetric, pMetric);
switch(uMetric)
{
diff --git a/dlls/msacm32/stream.c b/dlls/msacm32/stream.c
index ec7e848..4ca8069 100644
--- a/dlls/msacm32/stream.c
+++ b/dlls/msacm32/stream.c
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "winerror.h"
#include "windef.h"
-#include "debug.h"
+#include "debugtools.h"
#include "mmsystem.h"
#include "msacm.h"
#include "msacmdrv.h"
@@ -20,7 +20,7 @@
MMRESULT WINAPI acmStreamClose(
HACMSTREAM has, DWORD fdwClose)
{
- FIXME(msacm, "(0x%08x, %ld): stub\n", has, fdwClose);
+ FIXME("(0x%08x, %ld): stub\n", has, fdwClose);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -31,7 +31,7 @@
MMRESULT WINAPI acmStreamConvert(
HACMSTREAM has, PACMSTREAMHEADER pash, DWORD fdwConvert)
{
- FIXME(msacm, "(0x%08x, %p, %ld): stub\n", has, pash, fdwConvert);
+ FIXME("(0x%08x, %p, %ld): stub\n", has, pash, fdwConvert);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -42,7 +42,7 @@
MMRESULT WINAPI acmStreamMessage(
HACMSTREAM has, UINT uMsg, LPARAM lParam1, LPARAM lParam2)
{
- FIXME(msacm, "(0x%08x, %u, %ld, %ld): stub\n",
+ FIXME("(0x%08x, %u, %ld, %ld): stub\n",
has, uMsg, lParam1, lParam2
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -57,7 +57,7 @@
PWAVEFORMATEX pwfxDst, PWAVEFILTER pwfltr, DWORD dwCallback,
DWORD dwInstance, DWORD fdwOpen)
{
- FIXME(msacm, "(%p, 0x%08x, %p, %p, %p, %ld, %ld, %ld): stub\n",
+ FIXME("(%p, 0x%08x, %p, %p, %p, %ld, %ld, %ld): stub\n",
phas, had, pwfxSrc, pwfxDst, pwfltr,
dwCallback, dwInstance, fdwOpen
);
@@ -72,7 +72,7 @@
MMRESULT WINAPI acmStreamPrepareHeader(
HACMSTREAM has, PACMSTREAMHEADER pash, DWORD fdwPrepare)
{
- FIXME(msacm, "(0x%08x, %p, %ld): stub\n", has, pash, fdwPrepare);
+ FIXME("(0x%08x, %p, %ld): stub\n", has, pash, fdwPrepare);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -83,7 +83,7 @@
MMRESULT WINAPI acmStreamReset(
HACMSTREAM has, DWORD fdwReset)
{
- FIXME(msacm, "(0x%08x, %ld): stub\n", has, fdwReset);
+ FIXME("(0x%08x, %ld): stub\n", has, fdwReset);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return MMSYSERR_ERROR;
}
@@ -95,7 +95,7 @@
HACMSTREAM has, DWORD cbInput,
LPDWORD pdwOutputBytes, DWORD fdwSize)
{
- FIXME(msacm, "(0x%08x, %ld, %p, %ld): stub\n",
+ FIXME("(0x%08x, %ld, %p, %ld): stub\n",
has, cbInput, pdwOutputBytes, fdwSize
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
@@ -108,7 +108,7 @@
MMRESULT WINAPI acmStreamUnprepareHeader(
HACMSTREAM has, PACMSTREAMHEADER pash, DWORD fdwUnprepare)
{
- FIXME(msacm, "(0x%08x, %p, %ld): stub\n",
+ FIXME("(0x%08x, %p, %ld): stub\n",
has, pash, fdwUnprepare
);
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
diff --git a/dlls/psapi/psapi_main.c b/dlls/psapi/psapi_main.c
index 4837c47..75a980c 100644
--- a/dlls/psapi/psapi_main.c
+++ b/dlls/psapi/psapi_main.c
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "windef.h"
#include "winerror.h"
-#include "debug.h"
+#include "debugtools.h"
#include "psapi.h"
DEFAULT_DEBUG_CHANNEL(psapi)
@@ -28,7 +28,7 @@
BOOL WINAPI EnumDeviceDrivers(
LPVOID *lpImageBase, DWORD cb, LPDWORD lpcbNeeded)
{
- FIXME(psapi, "(%p, %ld, %p): stub\n", lpImageBase, cb, lpcbNeeded);
+ FIXME("(%p, %ld, %p): stub\n", lpImageBase, cb, lpcbNeeded);
if(lpcbNeeded)
*lpcbNeeded = 0;
@@ -42,7 +42,7 @@
*/
BOOL WINAPI EnumProcesses(DWORD *lpidProcess, DWORD cb, DWORD *lpcbNeeded)
{
- FIXME(psapi, "(%p, %ld, %p): stub\n", lpidProcess,cb, lpcbNeeded);
+ FIXME("(%p, %ld, %p): stub\n", lpidProcess,cb, lpcbNeeded);
if(lpcbNeeded)
*lpcbNeeded = 0;
@@ -56,7 +56,7 @@
BOOL WINAPI EnumProcessModules(
HANDLE hProcess, HMODULE *lphModule, DWORD cb, LPDWORD lpcbNeeded)
{
- FIXME(psapi, "(hProcess=0x%08x, %p, %ld, %p): stub\n",
+ FIXME("(hProcess=0x%08x, %p, %ld, %p): stub\n",
hProcess, lphModule, cb, lpcbNeeded
);
@@ -72,7 +72,7 @@
DWORD WINAPI GetDeviceDriverBaseNameA(
LPVOID ImageBase, LPSTR lpBaseName, DWORD nSize)
{
- FIXME(psapi, "(%p, %s, %ld): stub\n",
+ FIXME("(%p, %s, %ld): stub\n",
ImageBase, debugstr_a(lpBaseName), nSize
);
@@ -88,7 +88,7 @@
DWORD WINAPI GetDeviceDriverBaseNameW(
LPVOID ImageBase, LPWSTR lpBaseName, DWORD nSize)
{
- FIXME(psapi, "(%p, %s, %ld): stub\n",
+ FIXME("(%p, %s, %ld): stub\n",
ImageBase, debugstr_w(lpBaseName), nSize
);
@@ -104,7 +104,7 @@
DWORD WINAPI GetDeviceDriverFileNameA(
LPVOID ImageBase, LPSTR lpFilename, DWORD nSize)
{
- FIXME(psapi, "(%p, %s, %ld): stub\n",
+ FIXME("(%p, %s, %ld): stub\n",
ImageBase, debugstr_a(lpFilename), nSize
);
@@ -120,7 +120,7 @@
DWORD WINAPI GetDeviceDriverFileNameW(
LPVOID ImageBase, LPWSTR lpFilename, DWORD nSize)
{
- FIXME(psapi, "(%p, %s, %ld): stub\n",
+ FIXME("(%p, %s, %ld): stub\n",
ImageBase, debugstr_w(lpFilename), nSize
);
@@ -136,7 +136,7 @@
DWORD WINAPI GetMappedFileNameA(
HANDLE hProcess, LPVOID lpv, LPSTR lpFilename, DWORD nSize)
{
- FIXME(psapi, "(hProcess=0x%08x, %p, %s, %ld): stub\n",
+ FIXME("(hProcess=0x%08x, %p, %s, %ld): stub\n",
hProcess, lpv, debugstr_a(lpFilename), nSize
);
@@ -152,7 +152,7 @@
DWORD WINAPI GetMappedFileNameW(
HANDLE hProcess, LPVOID lpv, LPWSTR lpFilename, DWORD nSize)
{
- FIXME(psapi, "(hProcess=0x%08x, %p, %s, %ld): stub\n",
+ FIXME("(hProcess=0x%08x, %p, %s, %ld): stub\n",
hProcess, lpv, debugstr_w(lpFilename), nSize
);
@@ -168,7 +168,7 @@
DWORD WINAPI GetModuleBaseNameA(
HANDLE hProcess, HMODULE hModule, LPSTR lpBaseName, DWORD nSize)
{
- FIXME(psapi, "(hProcess=0x%08x, hModule=0x%08x, %s, %ld): stub\n",
+ FIXME("(hProcess=0x%08x, hModule=0x%08x, %s, %ld): stub\n",
hProcess, hModule, debugstr_a(lpBaseName), nSize
);
@@ -184,7 +184,7 @@
DWORD WINAPI GetModuleBaseNameW(
HANDLE hProcess, HMODULE hModule, LPWSTR lpBaseName, DWORD nSize)
{
- FIXME(psapi, "(hProcess=0x%08x, hModule=0x%08x, %s, %ld): stub\n",
+ FIXME("(hProcess=0x%08x, hModule=0x%08x, %s, %ld): stub\n",
hProcess, hModule, debugstr_w(lpBaseName), nSize);
if(lpBaseName && nSize)
@@ -199,7 +199,7 @@
DWORD WINAPI GetModuleFileNameExA(
HANDLE hProcess, HMODULE hModule, LPSTR lpFilename, DWORD nSize)
{
- FIXME(psapi, "(hProcess=0x%08x,hModule=0x%08x, %s, %ld): stub\n",
+ FIXME("(hProcess=0x%08x,hModule=0x%08x, %s, %ld): stub\n",
hProcess, hModule, debugstr_a(lpFilename), nSize
);
@@ -215,7 +215,7 @@
DWORD WINAPI GetModuleFileNameExW(
HANDLE hProcess, HMODULE hModule, LPWSTR lpFilename, DWORD nSize)
{
- FIXME(psapi, "(hProcess=0x%08x,hModule=0x%08x, %s, %ld): stub\n",
+ FIXME("(hProcess=0x%08x,hModule=0x%08x, %s, %ld): stub\n",
hProcess, hModule, debugstr_w(lpFilename), nSize
);
@@ -231,7 +231,7 @@
BOOL WINAPI GetModuleInformation(
HANDLE hProcess, HMODULE hModule, LPMODULEINFO lpmodinfo, DWORD cb)
{
- FIXME(psapi, "(hProcess=0x%08x, hModule=0x%08x, %p, %ld): stub\n",
+ FIXME("(hProcess=0x%08x, hModule=0x%08x, %p, %ld): stub\n",
hProcess, hModule, lpmodinfo, cb
);
@@ -246,7 +246,7 @@
BOOL WINAPI GetProcessMemoryInfo(
HANDLE Process, PPROCESS_MEMORY_COUNTERS ppsmemCounters, DWORD cb)
{
- FIXME(psapi, "(hProcess=0x%08x, %p, %ld): stub\n",
+ FIXME("(hProcess=0x%08x, %p, %ld): stub\n",
Process, ppsmemCounters, cb
);
@@ -261,7 +261,7 @@
BOOL WINAPI GetWsChanges(
HANDLE hProcess, PPSAPI_WS_WATCH_INFORMATION lpWatchInfo, DWORD cb)
{
- FIXME(psapi, "(hProcess=0x%08x, %p, %ld): stub\n",
+ FIXME("(hProcess=0x%08x, %p, %ld): stub\n",
hProcess, lpWatchInfo, cb
);
@@ -275,7 +275,7 @@
*/
BOOL WINAPI InitializeProcessForWsWatch(HANDLE hProcess)
{
- FIXME(psapi, "(hProcess=0x%08x): stub\n", hProcess);
+ FIXME("(hProcess=0x%08x): stub\n", hProcess);
return TRUE;
}
@@ -288,7 +288,7 @@
*/
BOOL WINAPI QueryWorkingSet(HANDLE hProcess, LPVOID pv, DWORD cb)
{
- FIXME(psapi, "(hProcess=0x%08x, %p, %ld)", hProcess, pv, cb);
+ FIXME("(hProcess=0x%08x, %p, %ld)", hProcess, pv, cb);
if(pv && cb)
((DWORD *) pv)[0] = 0; /* Empty WorkingSet */
diff --git a/dlls/rasapi32/rasapi.c b/dlls/rasapi32/rasapi.c
index 884a4b7..5711d03 100644
--- a/dlls/rasapi32/rasapi.c
+++ b/dlls/rasapi32/rasapi.c
@@ -6,7 +6,7 @@
#include "windef.h"
#include "ras.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(ras)
@@ -15,6 +15,6 @@
*/
DWORD WINAPI RasEnumConnectionsA( LPRASCONNA rca, LPDWORD x, LPDWORD y) {
/* Remote Access Service stuff is done by underlying OS anyway */
- FIXME(ras,"(%p,%p,%p),stub!\n",rca,x,y);
+ FIXME("(%p,%p,%p),stub!\n",rca,x,y);
return 0;
}
diff --git a/dlls/tapi32/assisted.c b/dlls/tapi32/assisted.c
index 07cf8e1..bcfd77e 100644
--- a/dlls/tapi32/assisted.c
+++ b/dlls/tapi32/assisted.c
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "windef.h"
#include "tapi.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(tapi)
@@ -15,7 +15,7 @@
{
char temp[30];
- FIXME(tapi, "(%s, %s): file sections ???\n", lpszCountryCode, lpszCityCode);
+ FIXME("(%s, %s): file sections ???\n", lpszCountryCode, lpszCityCode);
if (!(GetPrivateProfileStringA("Locations", "CurrentLocation", "", temp, 30, "telephon.ini")))
return TAPIERR_REQUESTFAILED;
if (!(GetPrivateProfileStringA("Locations", "FIXME_ENTRY", "", lpszCityCode, 8, "telephon.ini")))
@@ -26,6 +26,6 @@
DWORD WINAPI tapiRequestMakeCall(LPCSTR lpszDestAddress, LPCSTR lpszAppName,
LPCSTR lpszCalledParty, LPCSTR lpszComment)
{
- FIXME(tapi, "(%s, %s, %s, %s): stub.\n", lpszDestAddress, lpszAppName, lpszCalledParty, lpszComment);
+ FIXME("(%s, %s, %s, %s): stub.\n", lpszDestAddress, lpszAppName, lpszCalledParty, lpszComment);
return 0;
}
diff --git a/dlls/tapi32/phone.c b/dlls/tapi32/phone.c
index 9333933..ed6e46b 100644
--- a/dlls/tapi32/phone.c
+++ b/dlls/tapi32/phone.c
@@ -7,7 +7,7 @@
#include "winbase.h"
#include "windef.h"
#include "tapi.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(tapi)
@@ -23,115 +23,115 @@
DWORD WINAPI phoneClose(HPHONE hPhone)
{
- FIXME(tapi, "(%04x), stub.\n", hPhone);
+ FIXME("(%04x), stub.\n", hPhone);
return 0;
}
DWORD WINAPI phoneConfigDialog(DWORD dwDeviceID, HWND hwndOwner, LPCSTR lpszDeviceClass)
{
- FIXME(tapi, "(%08lx, %04x, %s): stub.\n", dwDeviceID, hwndOwner, lpszDeviceClass);
+ FIXME("(%08lx, %04x, %s): stub.\n", dwDeviceID, hwndOwner, lpszDeviceClass);
return 0;
}
DWORD WINAPI phoneDevSpecific(HPHONE hPhone, LPVOID lpParams, DWORD dwSize)
{
- FIXME(tapi, "(%04x, %p, %08ld): stub.\n", hPhone, lpParams, dwSize);
+ FIXME("(%04x, %p, %08ld): stub.\n", hPhone, lpParams, dwSize);
return 1;
}
DWORD WINAPI phoneGetButtonInfo(HPHONE hPhone, DWORD dwButtonLampID,
LPPHONEBUTTONINFO lpButtonInfo)
{
- FIXME(tapi, "(%04x, %08lx, %p): stub.\n", hPhone, dwButtonLampID, lpButtonInfo);
+ FIXME("(%04x, %08lx, %p): stub.\n", hPhone, dwButtonLampID, lpButtonInfo);
return 0;
}
DWORD WINAPI phoneGetData(HPHONE hPhone, DWORD dwDataID, LPVOID lpData, DWORD dwSize)
{
- FIXME(tapi, "(%04x, %08ld, %p, %08ld): stub.\n", hPhone, dwDataID, lpData, dwSize);
+ FIXME("(%04x, %08ld, %p, %08ld): stub.\n", hPhone, dwDataID, lpData, dwSize);
return 0;
}
DWORD WINAPI phoneGetDevCaps(HPHONEAPP hPhoneApp, DWORD dwDeviceID,
DWORD dwAPIVersion, DWORD dwExtVersion, LPPHONECAPS lpPhoneCaps)
{
- FIXME(tapi, "(%04x, %08ld, %08lx, %08lx, %p): stub.\n", hPhoneApp, dwDeviceID, dwAPIVersion, dwExtVersion, lpPhoneCaps);
+ FIXME("(%04x, %08ld, %08lx, %08lx, %p): stub.\n", hPhoneApp, dwDeviceID, dwAPIVersion, dwExtVersion, lpPhoneCaps);
return 0;
}
DWORD WINAPI phoneGetDisplay(HPHONE hPhone, LPVARSTRING lpDisplay)
{
- FIXME(tapi, "(%04x, %p): stub.\n", hPhone, lpDisplay);
+ FIXME("(%04x, %p): stub.\n", hPhone, lpDisplay);
return 0;
}
DWORD WINAPI phoneGetGain(HPHONE hPhone, DWORD dwHookSwitchDev, LPDWORD lpdwGain)
{
- FIXME(tapi, "(%04x, %08lx, %p): stub.\n", hPhone, dwHookSwitchDev, lpdwGain);
+ FIXME("(%04x, %08lx, %p): stub.\n", hPhone, dwHookSwitchDev, lpdwGain);
return 0;
}
DWORD WINAPI phoneGetHookSwitch(HPHONE hPhone, LPDWORD lpdwHookSwitchDevs)
{
- FIXME(tapi, "(%04x, %p): stub.\n", hPhone, lpdwHookSwitchDevs);
+ FIXME("(%04x, %p): stub.\n", hPhone, lpdwHookSwitchDevs);
return 0;
}
DWORD WINAPI phoneGetID(HPHONE hPhone, LPVARSTRING lpDeviceID,
LPCSTR lpszDeviceClass)
{
- FIXME(tapi, "(%04x, %p, %s): stub.\n", hPhone, lpDeviceID, lpszDeviceClass); return 0;
+ FIXME("(%04x, %p, %s): stub.\n", hPhone, lpDeviceID, lpszDeviceClass); return 0;
}
DWORD WINAPI phoneGetIcon(DWORD dwDeviceID, LPCSTR lpszDeviceClass,
HICON *lphIcon)
{
- FIXME(tapi, "(%08lx, %s, %p): stub.\n", dwDeviceID, lpszDeviceClass, lphIcon);
+ FIXME("(%08lx, %s, %p): stub.\n", dwDeviceID, lpszDeviceClass, lphIcon);
return 0;
}
DWORD WINAPI phoneGetLamp(HPHONE hPhone, DWORD dwButtonLampID,
LPDWORD lpdwLampMode)
{
- FIXME(tapi, "(%04x, %08lx, %p): stub.\n", hPhone, dwButtonLampID, lpdwLampMode);
+ FIXME("(%04x, %08lx, %p): stub.\n", hPhone, dwButtonLampID, lpdwLampMode);
return 0;
}
DWORD WINAPI phoneGetRing(HPHONE hPhone, LPDWORD lpdwRingMode, LPDWORD lpdwVolume)
{
- FIXME(tapi, "(%04x, %p, %p): stub.\n", hPhone, lpdwRingMode, lpdwVolume);
+ FIXME("(%04x, %p, %p): stub.\n", hPhone, lpdwRingMode, lpdwVolume);
return 0;
}
DWORD WINAPI phoneGetStatus(HPHONE hPhone, LPPHONESTATUS lpPhoneStatus)
{
- FIXME(tapi, "(%04x, %p): stub.\n", hPhone, lpPhoneStatus);
+ FIXME("(%04x, %p): stub.\n", hPhone, lpPhoneStatus);
return 0;
}
DWORD WINAPI phoneGetStatusMessages(HPHONE hPhone, LPDWORD lpdwPhoneStates,
LPDWORD lpdwButtonModes, LPDWORD lpdwButtonStates)
{
- FIXME(tapi, "(%04x, %p, %p, %p): stub.\n", hPhone, lpdwPhoneStates, lpdwButtonModes, lpdwButtonStates);
+ FIXME("(%04x, %p, %p, %p): stub.\n", hPhone, lpdwPhoneStates, lpdwButtonModes, lpdwButtonStates);
return 0;
}
DWORD WINAPI phoneGetVolume(HPHONE hPhone, DWORD dwHookSwitchDevs,
LPDWORD lpdwVolume)
{
- FIXME(tapi, "(%04x, %08lx, %p): stub.\n", hPhone, dwHookSwitchDevs, lpdwVolume);
+ FIXME("(%04x, %08lx, %p): stub.\n", hPhone, dwHookSwitchDevs, lpdwVolume);
return 0;
}
DWORD WINAPI phoneInitialize(LPHPHONEAPP lphPhoneApp, HINSTANCE hInstance, PHONECALLBACK lpfnCallback, LPCSTR lpszAppName, LPDWORD lpdwNumDevs)
{
- FIXME(tapi, "(%p, %04x, %p, %s, %p): stub.\n", lphPhoneApp, hInstance, lpfnCallback, lpszAppName, lpdwNumDevs);
+ FIXME("(%p, %04x, %p, %s, %p): stub.\n", lphPhoneApp, hInstance, lpfnCallback, lpszAppName, lpdwNumDevs);
return 0;
}
DWORD WINAPI phoneNegotiateAPIVersion(HPHONEAPP hPhoneApp, DWORD dwDeviceID, DWORD dwAPILowVersion, DWORD dwAPIHighVersion, LPDWORD lpdwAPIVersion, LPPHONEEXTENSIONID lpExtensionID)
{
- FIXME(tapi, "(): stub.\n");
+ FIXME("(): stub.\n");
return 0;
}
@@ -139,72 +139,72 @@
DWORD dwAPIVersion, DWORD dwExtLowVersion,
DWORD dwExtHighVersion, LPDWORD lpdwExtVersion)
{
- FIXME(tapi, "(): stub.\n");
+ FIXME("(): stub.\n");
return 0;
}
DWORD WINAPI phoneOpen(HPHONEAPP hPhoneApp, DWORD dwDeviceID, LPHPHONE lphPhone, DWORD dwAPIVersion, DWORD dwExtVersion, DWORD dwCallbackInstance, DWORD dwPrivileges)
{
- FIXME(tapi, "(): stub.\n");
+ FIXME("(): stub.\n");
return 0;
}
DWORD WINAPI phoneSetButtonInfo(HPHONE hPhone, DWORD dwButtonLampID, LPPHONEBUTTONINFO lpButtonInfo)
{
- FIXME(tapi, "(%04x, %08lx, %p): stub.\n", hPhone, dwButtonLampID, lpButtonInfo);
+ FIXME("(%04x, %08lx, %p): stub.\n", hPhone, dwButtonLampID, lpButtonInfo);
return 0;
}
DWORD WINAPI phoneSetData(HPHONE hPhone, DWORD dwDataID, LPVOID lpData, DWORD dwSize)
{
- FIXME(tapi, "(%04x, %08lx, %p, %ld): stub.\n", hPhone, dwDataID, lpData, dwSize);
+ FIXME("(%04x, %08lx, %p, %ld): stub.\n", hPhone, dwDataID, lpData, dwSize);
return 1;
}
DWORD WINAPI phoneSetDisplay(HPHONE hPhone, DWORD dwRow, DWORD dwColumn, LPCSTR lpszDisplay, DWORD dwSize)
{
- FIXME(tapi, "(%04x, '%s' at %ld/%ld, len %ld): stub.\n", hPhone, lpszDisplay, dwRow, dwColumn, dwSize);
+ FIXME("(%04x, '%s' at %ld/%ld, len %ld): stub.\n", hPhone, lpszDisplay, dwRow, dwColumn, dwSize);
return 1;
}
DWORD WINAPI phoneSetGain(HPHONE hPhone, DWORD dwHookSwitchDev, DWORD dwGain)
{
- FIXME(tapi, "(%04x, %08lx, %ld): stub.\n", hPhone, dwHookSwitchDev, dwGain);
+ FIXME("(%04x, %08lx, %ld): stub.\n", hPhone, dwHookSwitchDev, dwGain);
return 1;
}
DWORD WINAPI phoneSetHookSwitch(HPHONE hPhone, DWORD dwHookSwitchDevs, DWORD dwHookSwitchMode)
{
- FIXME(tapi, "(%04x, %08lx, %08lx): stub.\n", hPhone, dwHookSwitchDevs, dwHookSwitchMode);
+ FIXME("(%04x, %08lx, %08lx): stub.\n", hPhone, dwHookSwitchDevs, dwHookSwitchMode);
return 1;
}
DWORD WINAPI phoneSetLamp(HPHONE hPhone, DWORD dwButtonLampID, DWORD lpdwLampMode)
{
- FIXME(tapi, "(%04x, %08lx, %08lx): stub.\n", hPhone, dwButtonLampID, lpdwLampMode);
+ FIXME("(%04x, %08lx, %08lx): stub.\n", hPhone, dwButtonLampID, lpdwLampMode);
return 1;
}
DWORD WINAPI phoneSetRing(HPHONE hPhone, DWORD dwRingMode, DWORD dwVolume)
{
- FIXME(tapi, "(%04x, %08lx, %08ld): stub.\n", hPhone, dwRingMode, dwVolume);
+ FIXME("(%04x, %08lx, %08ld): stub.\n", hPhone, dwRingMode, dwVolume);
return 1;
}
DWORD WINAPI phoneSetStatusMessages(HPHONE hPhone, DWORD dwPhoneStates, DWORD dwButtonModes, DWORD dwButtonStates)
{
- FIXME(tapi, "(%04x, %08lx, %08lx, %08lx): stub.\n", hPhone, dwPhoneStates, dwButtonModes, dwButtonStates);
+ FIXME("(%04x, %08lx, %08lx, %08lx): stub.\n", hPhone, dwPhoneStates, dwButtonModes, dwButtonStates);
return 0; /* FIXME ? */
}
DWORD WINAPI phoneSetVolume(HPHONE hPhone, DWORD dwHookSwitchDev, DWORD dwVolume)
{
- FIXME(tapi, "(%04x, %08lx, %08ld): stub.\n", hPhone, dwHookSwitchDev, dwVolume);
+ FIXME("(%04x, %08lx, %08ld): stub.\n", hPhone, dwHookSwitchDev, dwVolume);
return 1;
}
DWORD WINAPI phoneShutdown(HPHONEAPP hPhoneApp)
{
- FIXME(tapi, "(%04x): stub.\n", hPhoneApp);
+ FIXME("(%04x): stub.\n", hPhoneApp);
return 0;
}
diff --git a/dlls/ver/ver16.c b/dlls/ver/ver16.c
index 0c85af3..420064a 100644
--- a/dlls/ver/ver16.c
+++ b/dlls/ver/ver16.c
@@ -8,7 +8,7 @@
#include "winver.h"
#include "ldt.h"
#include "ver.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(ver)
@@ -51,7 +51,7 @@
*/
DWORD WINAPI GetFileVersionInfoSize16( LPCSTR lpszFileName, LPDWORD lpdwHandle )
{
- TRACE( ver, "(%s, %p)\n", debugstr_a(lpszFileName), lpdwHandle );
+ TRACE("(%s, %p)\n", debugstr_a(lpszFileName), lpdwHandle );
return GetFileVersionInfoSizeA( lpszFileName, lpdwHandle );
}
@@ -61,7 +61,7 @@
DWORD WINAPI GetFileVersionInfo16( LPCSTR lpszFileName, DWORD handle,
DWORD cbBuf, LPVOID lpvData )
{
- TRACE( ver, "(%s, %08lx, %ld, %p)\n",
+ TRACE("(%s, %08lx, %ld, %p)\n",
debugstr_a(lpszFileName), handle, cbBuf, lpvData );
return GetFileVersionInfoA( lpszFileName, handle, cbBuf, lpvData );
@@ -120,7 +120,7 @@
UINT buflen;
DWORD retv;
- TRACE( ver, "(%p, %s, %p, %p)\n",
+ TRACE("(%p, %s, %p, %p)\n",
lpvBlock, debugstr_a(lpszSubBlock), lpspBuffer, lpcb );
retv = VerQueryValueA( lpvBlock, lpszSubBlock, &buffer, &buflen );
@@ -128,7 +128,7 @@
if ( OFFSETOF( spvBlock ) + ((char *) buffer - (char *) lpvBlock) >= 0x10000 )
{
- FIXME( ver, "offset %08X too large relative to %04X:%04X\n",
+ FIXME("offset %08X too large relative to %04X:%04X\n",
(char *) buffer - (char *) lpvBlock, SELECTOROF( spvBlock ), OFFSETOF( spvBlock ) );
return FALSE;
}
diff --git a/dlls/version/info.c b/dlls/version/info.c
index dcc295b..8a9240c 100644
--- a/dlls/version/info.c
+++ b/dlls/version/info.c
@@ -15,7 +15,7 @@
#include "winerror.h"
#include "heap.h"
#include "ver.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(ver)
@@ -32,7 +32,7 @@
{
dbg_decl_str(ver, 1024);
- TRACE(ver," structversion=%u.%u, fileversion=%u.%u.%u.%u, productversion=%u.%u.%u.%u, flagmask=0x%lx, flags=%s%s%s%s%s%s\n",
+ TRACE(" structversion=%u.%u, fileversion=%u.%u.%u.%u, productversion=%u.%u.%u.%u, flagmask=0x%lx, flags=%s%s%s%s%s%s\n",
HIWORD(vffi->dwStrucVersion),LOWORD(vffi->dwStrucVersion),
HIWORD(vffi->dwFileVersionMS),LOWORD(vffi->dwFileVersionMS),
HIWORD(vffi->dwFileVersionLS),LOWORD(vffi->dwFileVersionLS),
@@ -68,7 +68,7 @@
case VOS__PM32:dsprintf(ver,"PM32");break;
default:dsprintf(ver,"UNKNOWN(0x%x)",LOWORD(vffi->dwFileOS));break;
}
- TRACE(ver, "(%s)\n", dbg_str(ver));
+ TRACE("(%s)\n", dbg_str(ver));
dbg_reset_str(ver);
switch (vffi->dwFileType) {
@@ -134,9 +134,9 @@
case VFT_VXD:dsprintf(ver,"filetype=VXD");break;
case VFT_STATIC_LIB:dsprintf(ver,"filetype=STATIC_LIB");break;
}
- TRACE(ver, "%s\n", dbg_str(ver));
+ TRACE("%s\n", dbg_str(ver));
- TRACE(ver, " filedata=0x%lx.0x%lx\n",
+ TRACE(" filedata=0x%lx.0x%lx\n",
vffi->dwFileDateMS,vffi->dwFileDateLS);
}
@@ -207,28 +207,28 @@
VS_VERSION_INFO_STRUCT32 *child32 = VersionInfo32_Children( info32 );
VS_VERSION_INFO_STRUCT16 *child16;
- TRACE( ver, "Converting %p to %p\n", info32, info16 );
- TRACE( ver, "wLength %d, wValueLength %d, bText %d, value %p, child %p\n",
+ TRACE("Converting %p to %p\n", info32, info16 );
+ TRACE("wLength %d, wValueLength %d, bText %d, value %p, child %p\n",
wLength, wValueLength, bText, lpValue, child32 );
/* Convert key */
lstrcpyWtoA( info16->szKey, info32->szKey );
- TRACE( ver, "Copied key from %p to %p: %s\n", info32->szKey, info16->szKey,
+ TRACE("Copied key from %p to %p: %s\n", info32->szKey, info16->szKey,
debugstr_a(info16->szKey) );
/* Convert value */
if ( wValueLength == 0 )
{
info16->wValueLength = 0;
- TRACE( ver, "No value present\n" );
+ TRACE("No value present\n" );
}
else if ( bText )
{
info16->wValueLength = lstrlenW( (LPCWSTR)lpValue ) + 1;
lstrcpyWtoA( VersionInfo16_Value( info16 ), (LPCWSTR)lpValue );
- TRACE( ver, "Copied value from %p to %p: %s\n", lpValue,
+ TRACE("Copied value from %p to %p: %s\n", lpValue,
VersionInfo16_Value( info16 ),
debugstr_a(VersionInfo16_Value( info16 )) );
}
@@ -237,7 +237,7 @@
info16->wValueLength = wValueLength;
memmove( VersionInfo16_Value( info16 ), lpValue, wValueLength );
- TRACE( ver, "Copied value from %p to %p: %d bytes\n", lpValue,
+ TRACE("Copied value from %p to %p: %d bytes\n", lpValue,
VersionInfo16_Value( info16 ), wValueLength );
}
@@ -256,7 +256,7 @@
/* Fixup length */
info16->wLength = (DWORD)child16 - (DWORD)info16;
- TRACE( ver, "Finished, length is %d (%p - %p)\n",
+ TRACE("Finished, length is %d (%p - %p)\n",
info16->wLength, info16, child16 );
}
@@ -270,7 +270,7 @@
DWORD len, ret, offset;
BYTE buf[144];
- TRACE( ver, "(%s,%p)\n", debugstr_a(filename), handle );
+ TRACE("(%s,%p)\n", debugstr_a(filename), handle );
len = GetFileResourceSize( filename,
MAKEINTRESOURCEA(VS_FILE_INFO),
@@ -293,7 +293,7 @@
if ( vffi->dwSignature != VS_FFI_SIGNATURE )
{
- WARN( ver, "vffi->dwSignature is 0x%08lx, but not 0x%08lx!\n",
+ WARN("vffi->dwSignature is 0x%08lx, but not 0x%08lx!\n",
vffi->dwSignature, VS_FFI_SIGNATURE );
return 0;
}
@@ -301,7 +301,7 @@
if ( ((VS_VERSION_INFO_STRUCT16 *)buf)->wLength < len )
len = ((VS_VERSION_INFO_STRUCT16 *)buf)->wLength;
- if ( TRACE_ON( ver ) )
+ if ( TRACE_ON(ver) )
print_vffi_debug( vffi );
return len;
@@ -324,7 +324,7 @@
DWORD WINAPI GetFileVersionInfoA( LPCSTR filename, DWORD handle,
DWORD datasize, LPVOID data )
{
- TRACE( ver, "(%s,%ld,size=%ld,data=%p)\n",
+ TRACE("(%s,%ld,size=%ld,data=%p)\n",
debugstr_a(filename), handle, datasize, data );
if ( !GetFileResource( filename, MAKEINTRESOURCEA(VS_FILE_INFO),
@@ -353,7 +353,7 @@
LPSTR fn = HEAP_strdupWtoA( GetProcessHeap(), 0, filename );
DWORD retv = TRUE;
- TRACE( ver, "(%s,%ld,size=%ld,data=%p)\n",
+ TRACE("(%s,%ld,size=%ld,data=%p)\n",
debugstr_a(fn), handle, datasize, data );
if ( !GetFileResource( fn, MAKEINTRESOURCEA(VS_FILE_INFO),
@@ -365,7 +365,7 @@
&& datasize >= ((VS_VERSION_INFO_STRUCT16 *)data)->wLength
&& VersionInfoIs16( data ) )
{
- ERR( ver, "Cannot access NE resource in %s\n", debugstr_a(fn) );
+ ERR("Cannot access NE resource in %s\n", debugstr_a(fn) );
retv = FALSE;
}
@@ -422,11 +422,11 @@
VS_VERSION_INFO_STRUCT16 *info = (VS_VERSION_INFO_STRUCT16 *)pBlock;
if ( !VersionInfoIs16( info ) )
{
- ERR( ver, "called on PE resource!\n" );
+ ERR("called on PE resource!\n" );
return FALSE;
}
- TRACE( ver, "(%p,%s,%p,%p)\n",
+ TRACE("(%p,%s,%p,%p)\n",
pBlock, debugstr_a(lpSubBlock), lplpBuffer, puLen );
while ( *lpSubBlock )
@@ -468,11 +468,11 @@
VS_VERSION_INFO_STRUCT32 *info = (VS_VERSION_INFO_STRUCT32 *)pBlock;
if ( VersionInfoIs16( info ) )
{
- ERR( ver, "called on NE resource!\n" );
+ ERR("called on NE resource!\n" );
return FALSE;
}
- TRACE( ver, "(%p,%s,%p,%p)\n",
+ TRACE("(%p,%s,%p,%p)\n",
pBlock, debugstr_w(lpSubBlock), lplpBuffer, puLen );
while ( *lpSubBlock )
@@ -516,7 +516,7 @@
LPCSTR name;
DWORD result;
- TRACE( ver, "(%d,%p,%d)\n", wLang, szLang, nSize );
+ TRACE("(%d,%p,%d)\n", wLang, szLang, nSize );
/*
* First, check \System\CurrentControlSet\control\Nls\Locale\<langid>
@@ -551,7 +551,7 @@
LPCSTR name;
DWORD result;
- TRACE( ver, "(%d,%p,%d)\n", wLang, szLang, nSize );
+ TRACE("(%d,%p,%d)\n", wLang, szLang, nSize );
/*
* First, check \System\CurrentControlSet\control\Nls\Locale\<langid>
diff --git a/dlls/version/install.c b/dlls/version/install.c
index 1cceb31..dd72a04 100644
--- a/dlls/version/install.c
+++ b/dlls/version/install.c
@@ -16,7 +16,7 @@
#include "ver.h"
#include "lzexpand.h"
#include "xmalloc.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(ver)
@@ -50,7 +50,7 @@
char const * teststring,
char const * epilogue )
{
- TRACE(ver, "%s %p (\"%s\") %s\n", prologue,
+ TRACE("%s %p (\"%s\") %s\n", prologue,
(void const *) teststring,
teststring ? teststring : "(null)",
epilogue);
@@ -189,27 +189,27 @@
retval = 0;
/* Print out debugging information */
- TRACE(ver, "called with parameters:\n"
+ TRACE("called with parameters:\n"
"\tflags = %x", flags);
if(flags & VFFF_ISSHAREDFILE)
- TRACE(ver, " (VFFF_ISSHAREDFILE)\n");
+ TRACE(" (VFFF_ISSHAREDFILE)\n");
else
- TRACE(ver, "\n");
+ TRACE("\n");
ver_dstring("\tlpszFilename = ", lpszFilename, "");
ver_dstring("\tlpszWinDir = ", lpszWinDir, "");
ver_dstring("\tlpszAppDir = ", lpszAppDir, "");
- TRACE(ver, "\tlpszCurDir = %p\n", lpszCurDir);
+ TRACE("\tlpszCurDir = %p\n", lpszCurDir);
if(lpuCurDirLen)
- TRACE(ver, "\tlpuCurDirLen = %p (%u)\n",
+ TRACE("\tlpuCurDirLen = %p (%u)\n",
lpuCurDirLen, *lpuCurDirLen);
else
- TRACE(ver, "\tlpuCurDirLen = (null)\n");
+ TRACE("\tlpuCurDirLen = (null)\n");
- TRACE(ver, "\tlpszDestDir = %p\n", lpszDestDir);
+ TRACE("\tlpszDestDir = %p\n", lpszDestDir);
if(lpuDestDirLen)
- TRACE(ver, "\tlpuDestDirLen = %p (%u)\n",
+ TRACE("\tlpuDestDirLen = %p (%u)\n",
lpuDestDirLen, *lpuDestDirLen);
/* Figure out where the file should go; shared files default to the
@@ -301,21 +301,21 @@
*lpuCurDirLen = curDirSizeReq;
}
- TRACE(ver, "ret = %lu (%s%s%s)\n", retval,
+ TRACE("ret = %lu (%s%s%s)\n", retval,
(retval & VFF_CURNEDEST) ? "VFF_CURNEDEST " : "",
(retval & VFF_FILEINUSE) ? "VFF_FILEINUSE " : "",
(retval & VFF_BUFFTOOSMALL) ? "VFF_BUFFTOOSMALL " : "");
ver_dstring("\t(Exit) lpszCurDir = ", lpszCurDir, "");
if(lpuCurDirLen)
- TRACE(ver, "\t(Exit) lpuCurDirLen = %p (%u)\n",
+ TRACE("\t(Exit) lpuCurDirLen = %p (%u)\n",
lpuCurDirLen, *lpuCurDirLen);
else
- TRACE(ver, "\t(Exit) lpuCurDirLen = (null)\n");
+ TRACE("\t(Exit) lpuCurDirLen = (null)\n");
ver_dstring("\t(Exit) lpszDestDir = ", lpszDestDir, "");
if(lpuDestDirLen)
- TRACE(ver, "\t(Exit) lpuDestDirLen = %p (%u)\n",
+ TRACE("\t(Exit) lpuDestDirLen = %p (%u)\n",
lpuDestDirLen, *lpuDestDirLen);
return retval;
@@ -371,7 +371,7 @@
if ((*vffi)->dwSignature == 0x004f0049) /* hack to detect unicode */
*vffi = (VS_FIXEDFILEINFO*)(buf+0x28);
if ((*vffi)->dwSignature != VS_FFI_SIGNATURE)
- WARN(ver,"Bad VS_FIXEDFILEINFO signature 0x%08lx\n",(*vffi)->dwSignature);
+ WARN("Bad VS_FIXEDFILEINFO signature 0x%08lx\n",(*vffi)->dwSignature);
return buf;
}
}
@@ -404,7 +404,7 @@
LPBYTE buf1,buf2;
OFSTRUCT ofs;
- TRACE(ver,"(%x,%s,%s,%s,%s,%s,%p,%d)\n",
+ TRACE("(%x,%s,%s,%s,%s,%s,%p,%d)\n",
flags,srcfilename,destfilename,srcdir,destdir,curdir,tmpfile,*tmpfilelen
);
xret = 0;
diff --git a/dlls/version/resource.c b/dlls/version/resource.c
index fb242d0..70bc312 100644
--- a/dlls/version/resource.c
+++ b/dlls/version/resource.c
@@ -17,7 +17,7 @@
#include "heap.h"
#include "lzexpand.h"
#include "peexe.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(ver)
@@ -48,7 +48,7 @@
return IMAGE_NT_SIGNATURE;
magic[2] = '\0';
- WARN( ver, "Can't handle %s files.\n", magic );
+ WARN("Can't handle %s files.\n", magic );
return 0;
}
@@ -72,7 +72,7 @@
resTabSize = nehd.rname_tab_offset - nehd.resource_tab_offset;
if ( !resTabSize )
{
- TRACE( ver, "No resources in NE dll\n" );
+ TRACE("No resources in NE dll\n" );
return FALSE;
}
@@ -92,14 +92,14 @@
typeInfo = NE_FindTypeSection( resTab, typeInfo, typeid );
if ( !typeInfo )
{
- TRACE( ver, "No typeid entry found for %p\n", typeid );
+ TRACE("No typeid entry found for %p\n", typeid );
HeapFree( GetProcessHeap(), 0, resTab );
return FALSE;
}
nameInfo = NE_FindResourceFromType( resTab, typeInfo, resid );
if ( !nameInfo )
{
- TRACE( ver, "No resid entry found for %p\n", typeid );
+ TRACE("No resid entry found for %p\n", typeid );
HeapFree( GetProcessHeap(), 0, resTab );
return FALSE;
}
@@ -137,7 +137,7 @@
resDataDir = pehd.OptionalHeader.DataDirectory+IMAGE_FILE_RESOURCE_DIRECTORY;
if ( !resDataDir->Size )
{
- TRACE( ver, "No resources in PE dll\n" );
+ TRACE("No resources in PE dll\n" );
return FALSE;
}
@@ -169,7 +169,7 @@
if ( i == nSections )
{
HeapFree( GetProcessHeap(), 0, sections );
- TRACE( ver, "Couldn't find resource section\n" );
+ TRACE("Couldn't find resource section\n" );
return FALSE;
}
@@ -198,7 +198,7 @@
resPtr = GetResDirEntryA( resPtr, typeid, resDir, FALSE );
if ( !resPtr )
{
- TRACE( ver, "No typeid entry found for %p\n", typeid );
+ TRACE("No typeid entry found for %p\n", typeid );
HeapFree( GetProcessHeap(), 0, resSection );
HeapFree( GetProcessHeap(), 0, sections );
return FALSE;
@@ -206,7 +206,7 @@
resPtr = GetResDirEntryA( resPtr, resid, resDir, FALSE );
if ( !resPtr )
{
- TRACE( ver, "No resid entry found for %p\n", resid );
+ TRACE("No resid entry found for %p\n", resid );
HeapFree( GetProcessHeap(), 0, resSection );
HeapFree( GetProcessHeap(), 0, sections );
return FALSE;
@@ -214,7 +214,7 @@
resPtr = GetResDirEntryA( resPtr, 0, resDir, TRUE );
if ( !resPtr )
{
- TRACE( ver, "No default language entry found for %p\n", resid );
+ TRACE("No default language entry found for %p\n", resid );
HeapFree( GetProcessHeap(), 0, resSection );
HeapFree( GetProcessHeap(), 0, sections );
return FALSE;
@@ -230,7 +230,7 @@
if ( i == nSections )
{
- TRACE( ver, "Couldn't find resource data section\n" );
+ TRACE("Couldn't find resource data section\n" );
HeapFree( GetProcessHeap(), 0, resSection );
HeapFree( GetProcessHeap(), 0, sections );
return FALSE;
@@ -258,7 +258,7 @@
OFSTRUCT ofs;
DWORD reslen;
- TRACE( ver, "(%s,type=0x%lx,id=0x%lx,off=%p)\n",
+ TRACE("(%s,type=0x%lx,id=0x%lx,off=%p)\n",
debugstr_a(lpszFileName), (LONG)lpszResType, (LONG)lpszResId,
lpszResId );
@@ -295,7 +295,7 @@
OFSTRUCT ofs;
DWORD reslen = dwResLen;
- TRACE( ver, "(%s,type=0x%lx,id=0x%lx,off=%ld,len=%ld,data=%p)\n",
+ TRACE("(%s,type=0x%lx,id=0x%lx,off=%ld,len=%ld,data=%p)\n",
debugstr_a(lpszFileName), (LONG)lpszResType, (LONG)lpszResId,
dwFileOffset, dwResLen, lpvData );
diff --git a/ipc/dde_atom.c b/ipc/dde_atom.c
index 5d90f9a..d776f4f 100644
--- a/ipc/dde_atom.c
+++ b/ipc/dde_atom.c
@@ -15,7 +15,7 @@
#include "shm_main_blk.h"
#include "shm_fragment.h"
#include "ldt.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(atom)
@@ -130,7 +130,7 @@
return (atom<MIN_STR_ATOM) ? atom : 0;
}
- TRACE(atom,"(\"%s\")\n",str);
+ TRACE("(\"%s\")\n",str);
DDE_IPC_init(); /* will initialize only if needed */
@@ -175,7 +175,7 @@
AtomData_ptr atom_ptr;
ATOM retval=(ATOM) 0;
- TRACE(atom,"(\"%d\")\n",(int)atom);
+ TRACE("(\"%d\")\n",(int)atom);
atom_idx=(int)atom - MIN_STR_ATOM;
if (atom_idx < 0 )
@@ -188,7 +188,7 @@
switch (atom_ofs=ATOM_OFS(atom_idx)) {
case DELETED:
case EMPTY:
- WARN(atom, "Trying to free unallocated atom %d\n", atom);
+ WARN("Trying to free unallocated atom %d\n", atom);
retval=atom;
break;
default :
@@ -212,7 +212,7 @@
int atom_ofs;
char *str;
- TRACE(atom,"(%08lx)\n", name );
+ TRACE("(%08lx)\n", name );
/* First check for integer atom */
@@ -224,7 +224,7 @@
ATOM atom= (ATOM) atoi(&str[1]);
return (atom<MIN_STR_ATOM) ? atom : 0;
}
- TRACE(atom,"(\"%s\")\n",str);
+ TRACE("(\"%s\")\n",str);
DDE_IPC_init(); /* will initialize only if needed */
@@ -274,7 +274,7 @@
shm_read_wait(main_block->sem);
atom_ofs=ATOM_OFS(atom_idx);
if (atom_ofs==EMPTY || atom_ofs==DELETED) {
- WARN(atom,"Illegal atom=%d\n",(int)atom);
+ WARN("Illegal atom=%d\n",(int)atom);
size=0;
} else { /* non empty entry */
/* string length will be at most count-1, find actual size */
diff --git a/ipc/dde_atom_test.c b/ipc/dde_atom_test.c
index 8038f40..047a909 100644
--- a/ipc/dde_atom_test.c
+++ b/ipc/dde_atom_test.c
@@ -12,7 +12,7 @@
#include <win.h>
#include "dde_atom.h"
#include "shm_main_blk.h"
-#include <debug.h>
+#include "debugtools.h"
DECLARE_DEBUG_CHANNEL(atom)
DECLARE_DEBUG_CHANNEL(sem)
diff --git a/ipc/shm_block.c b/ipc/shm_block.c
index 14255cf..d63a4c3 100644
--- a/ipc/shm_block.c
+++ b/ipc/shm_block.c
@@ -9,13 +9,12 @@
*/
#ifdef CONFIG_IPC
-#define inline inline
#include <sys/types.h>
#include <sys/sem.h>
#include <assert.h>
#include <unistd.h>
#include <stdlib.h>
-#include "debug.h"
+#include "debugtools.h"
#include "global.h"
#include "selectors.h"
#include "shm_fragment.h"
@@ -38,7 +37,7 @@
*/
void shm_setup_block(struct shm_block *block, int first, int size)
{
- TRACE(shm,"Setting up shm block at 0x%08x\n",(int )block);
+ TRACE("Setting up shm block at 0x%08x\n",(int )block);
/* setup block internal data structure */
if (first <= 0) {
first=sizeof(*block);
@@ -54,7 +53,7 @@
/* block->size is initialized in shm_FragmentInit */
shm_FragmentInit(block, first, size); /* first item in the free list */
- TRACE(shm, "block was set up at 0x%08x, size=0x%04xKB, 1st usable=%02x\n",
+ TRACE("block was set up at 0x%08x, size=0x%04xKB, 1st usable=%02x\n",
(int )block,size/1024,first);
}
diff --git a/ipc/shm_fragment.c b/ipc/shm_fragment.c
index dac3431..91eeb89 100644
--- a/ipc/shm_fragment.c
+++ b/ipc/shm_fragment.c
@@ -10,7 +10,7 @@
#ifdef CONFIG_IPC
#include <stdio.h> /* for debugging only */
-#include <debug.h> /* for "stddeb" */
+#include "debugtools.h" /* for "stddeb" */
#include "shm_fragment.h"
#include "shm_block.h"
diff --git a/ipc/shm_fragment_test.c b/ipc/shm_fragment_test.c
index 054ab63..d400430 100644
--- a/ipc/shm_fragment_test.c
+++ b/ipc/shm_fragment_test.c
@@ -10,7 +10,7 @@
#include <assert.h>
#include <stdio.h>
#define DEBUG_DEFINE_VARIABLES /* just avoid dumb errors */
-#include <debug.h> /* for "stddeb" */
+#include "debugtools.h" /* for "stddeb" */
#include <stdlib.h>
#include <string.h>
#include "shm_block.h"
diff --git a/ipc/shm_main_blk.c b/ipc/shm_main_blk.c
index 3333e2b..4ef76c7 100644
--- a/ipc/shm_main_blk.c
+++ b/ipc/shm_main_blk.c
@@ -9,7 +9,6 @@
*/
#ifdef CONFIG_IPC
-#define inline inline
#include <sys/types.h>
#include <sys/sem.h>
#include <time.h>
@@ -17,7 +16,7 @@
#include <unistd.h>
#include <errno.h>
#include <signal.h>
-#include "debug.h"
+#include "debugtools.h"
#include "shm_fragment.h"
#include "shm_block.h"
#include "shm_main_blk.h"
@@ -80,7 +79,7 @@
/* setup a new main shm block (only construct a shm block object). */
static void shm_setup_main_block()
{
- TRACE(shm,"creating data structure\n");
+ TRACE("creating data structure\n");
main_block->build_lock=1;
strcpy(main_block->magic, shm_header);
@@ -134,19 +133,19 @@
/* Make sure we don't work on somebody else's block */
if (shm_info.shm_perm.cuid != getuid()) { /* creator is not me */
- WARN(shm, "Creator is not me!\n");
+ WARN("Creator is not me!\n");
return 0;
}
- TRACE(shm,"shared memory exist, attaching anywhere\n");
+ TRACE("shared memory exist, attaching anywhere\n");
main_block=(struct shm_main_block *)shmat(shm_id, 0, 0);
if ( (int)main_block==-1) {
- WARN(shm, "Attach failed\n");
+ WARN("Attach failed\n");
return 0;
}
if (strcmp(main_block->magic, shm_header) != 0) {
- TRACE(shm,"Detaching, wrong magic\n");
+ TRACE("Detaching, wrong magic\n");
shmdt((void *)main_block);
return 0;
}
@@ -156,7 +155,7 @@
/* Is it an old unused block ? */
if (shm_info.shm_nattch == 0) {
- TRACE(shm,"No attaches, deleting old data\n");
+ TRACE("No attaches, deleting old data\n");
shm_delete_all(shm_id);
return 0;
}
@@ -181,10 +180,10 @@
int shm_id; /* Descriptor to this shared memory */
int i;
- TRACE(shm,"trying to attach, key=0x%x\n",
+ TRACE("trying to attach, key=0x%x\n",
shm_key);
for (i=0 ; i < SHM_KEY_RANGE ; i++) {
- TRACE(shm,"iteration=%d\n", i);
+ TRACE("iteration=%d\n", i);
shm_id= shmget ( shm_key+i, SHM_MINBLOCK ,0700);
@@ -203,7 +202,7 @@
case ENOMEM: /* no free memory */
case ENOENT: /* this key does not exist */
default :
- WARN(shm,"shmget failed, errno=%d, %s\n",
+ WARN("shmget failed, errno=%d, %s\n",
errno, strerror(errno) );
return 0; /* Failed */
}
@@ -223,7 +222,7 @@
int flags= 0700 | IPC_CREAT | IPC_EXCL;
int i;
- TRACE(shm,"creating shared memory\n");
+ TRACE("creating shared memory\n");
/* try to allocate shared memory with key="Wine", size=SHM_MINBLOCK, */
/* complete user permission */
@@ -233,10 +232,10 @@
break;
}
if (shm_id == -1) {
- WARN(shm, "failed to create shared memory\n");
+ WARN("failed to create shared memory\n");
return 0;
}
- TRACE(shm,"shared memory created, attaching\n");
+ TRACE("shared memory created, attaching\n");
main_block=(struct shm_main_block*) shmat(shm_id, 0,0);
if (TRACE_ON(shm))
print_shm_info(shm_id);
@@ -253,7 +252,7 @@
{
if ( !shm_locate_MainBlock(WineKey)
&& !shm_create_MainBlock(WineKey)) {
- ERR(shm, "Failed to init main shm block\n");
+ ERR("Failed to init main shm block\n");
exit(1);
}
diff --git a/ipc/shm_semaph.c b/ipc/shm_semaph.c
index fc4f5b6..f69319f 100644
--- a/ipc/shm_semaph.c
+++ b/ipc/shm_semaph.c
@@ -9,12 +9,11 @@
*/
#ifdef CONFIG_IPC
-#define inline inline
#include <assert.h>
#include <unistd.h>
#include <sys/sem.h>
#include <errno.h>
-#include "debug.h"
+#include "debugtools.h"
#include "shm_semaph.h"
DEFAULT_DEBUG_CHANNEL(sem)
@@ -29,7 +28,7 @@
struct sembuf sop[2];
int ret;
- TRACE(sem,"(%d)\n",semid);
+ TRACE("(%d)\n",semid);
sop[0].sem_num=SEM_READ;
sop[0].sem_op=1; /* add this read instance */
sop[0].sem_flg=SEM_UNDO; /* undo in case process dies */
@@ -43,7 +42,7 @@
} while (ret<0 && errno==EINTR); /* interrupted system call? */
if (ret<0)
- WARN(sem,"(semid=%d,errno=%d): Failed semaphore lock for read\n",
+ WARN("(semid=%d,errno=%d): Failed semaphore lock for read\n",
semid, errno);
}
void shm_write_wait(shm_sem semid)
@@ -51,7 +50,7 @@
struct sembuf sop[3];
int ret;
- TRACE(sem,"(%d)\n",semid);
+ TRACE("(%d)\n",semid);
sop[0].sem_num=SEM_READ;
sop[0].sem_op=0; /* wait until no reading instance exist */
sop[0].sem_flg=SEM_UNDO;
@@ -69,7 +68,7 @@
} while (ret<0 && errno==EINTR); /* interrupted system call? */
if (ret<0) /* test for the error */
- WARN(sem,"(semid=%d,errno=%d): Failed semaphore lock for write\n",
+ WARN("(semid=%d,errno=%d): Failed semaphore lock for write\n",
semid, errno);
}
void shm_write_signal(shm_sem semid)
@@ -77,7 +76,7 @@
struct sembuf sop[2];
int ret;
- TRACE(sem,"(%d)\n",semid);
+ TRACE("(%d)\n",semid);
sop[0].sem_num=SEM_READ;
sop[0].sem_op=-1;
sop[0].sem_flg=IPC_NOWAIT | SEM_UNDO; /* no reason to wait */
@@ -91,7 +90,7 @@
} while (ret<0 && errno==EINTR); /* interrupted system call? */
if (ret<0) /* test for the error */
- WARN(sem,"(semid=%d,errno=%d): Failed semaphore unlock for write\n",
+ WARN("(semid=%d,errno=%d): Failed semaphore unlock for write\n",
semid, errno);
}
@@ -100,7 +99,7 @@
struct sembuf sop[2];
int ret;
- TRACE(sem,"(%d)\n",semid);
+ TRACE("(%d)\n",semid);
sop[0].sem_num=SEM_READ;
sop[0].sem_op=-1;
sop[0].sem_flg=IPC_NOWAIT | SEM_UNDO; /* no reason to wait */
@@ -110,7 +109,7 @@
} while (ret<0 && errno==EINTR); /* interrupted system call? */
if (ret<0) /* test for the error */
- WARN(sem,"(semid=%d,errno=%d): Failed semaphore unlock for read\n",
+ WARN("(semid=%d,errno=%d): Failed semaphore unlock for read\n",
semid, errno);
}
diff --git a/ipc/shm_semaph_test.c b/ipc/shm_semaph_test.c
index 6132861..1467442 100644
--- a/ipc/shm_semaph_test.c
+++ b/ipc/shm_semaph_test.c
@@ -16,7 +16,7 @@
#include "shm_semaph.h"
#include <sys/shm.h>
#define DEBUG_DEFINE_VARIABLES
-#include <debug.h>
+#include "debugtools.h"
static volatile int * volatile data;
static int isparent=0;
diff --git a/ipc/wine_test_stub.c b/ipc/wine_test_stub.c
index 8a3a203..9f2b91f 100644
--- a/ipc/wine_test_stub.c
+++ b/ipc/wine_test_stub.c
@@ -5,7 +5,7 @@
#include <win.h>
#define DEBUG_DEFINE_VARIABLES
#define DEBUG_ALL
-#include <debug.h>
+#include "debugtools.h"
#define DDE_PROC2WIN(proc_idx) ( (HWND) ~( (proc_idx)+1) )
#define DDE_WIN2PROC(win) ( (int) ~(short) ((win)+1) )
diff --git a/relay32/snoop.c b/relay32/snoop.c
index afc7392..6879009 100644
--- a/relay32/snoop.c
+++ b/relay32/snoop.c
@@ -17,7 +17,7 @@
#include "selectors.h"
#include "stackframe.h"
#include "debugstr.h"
-#include "debug.h"
+#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(snoop)
@@ -141,7 +141,7 @@
memset((*dll)->funs,0,nrofordinals*sizeof(SNOOP_FUN));
if (!(*dll)->funs) {
HeapFree(SystemHeap,0,*dll);
- FIXME(snoop,"out of memory\n");
+ FIXME("out of memory\n");
return;
}
}
@@ -270,7 +270,7 @@
dll=dll->next;
}
if (!dll) {
- FIXME(snoop,"entrypoint 0x%08lx not found\n",entry);
+ FIXME("entrypoint 0x%08lx not found\n",entry);
return; /* oops */
}
/* guess cdecl ... */
@@ -365,7 +365,7 @@
}
#else /* !__i386__ */
void SNOOP_RegisterDLL(HMODULE hmod,LPCSTR name,DWORD nrofordinals) {
- FIXME(snoop,"snooping works only on i386 for now.\n");
+ FIXME("snooping works only on i386 for now.\n");
return;
}
diff --git a/relay32/utthunk.c b/relay32/utthunk.c
index 90faa15..4a94ce5 100644
--- a/relay32/utthunk.c
+++ b/relay32/utthunk.c
@@ -10,7 +10,7 @@
#include "selectors.h"
#include "callback.h"
#include "process.h"
-#include "debug.h"
+#include "debugtools.h"
#include "debugstr.h"
DEFAULT_DEBUG_CHANNEL(thunk)
@@ -103,7 +103,7 @@
segptrList = HeapAlloc( GetProcessHeap(), 0, sizeof(SEGPTR)*nList );
if ( !segptrList )
{
- FIXME( thunk, "Unable to allocate segptrList!" );
+ FIXME("Unable to allocate segptrList!" );
return 0;
}
@@ -280,7 +280,7 @@
*/
WORD WINAPI UTInit16( DWORD x1, DWORD x2, DWORD x3, DWORD x4 )
{
- FIXME( thunk, "(%08lx, %08lx, %08lx, %08lx): stub\n", x1, x2, x3, x4 );
+ FIXME("(%08lx, %08lx, %08lx, %08lx): stub\n", x1, x2, x3, x4 );
return 0;
}