Converted to the new debug interface, using script written by Patrik Stridvall.
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; }