Display thread id instead of %fs in relay trace.
[wine.git] / dlls / tapi32 / assisted.c
bloba794ac871fb2ed08b093d11d99dcdcee2c50edd6
1 /*
2 * TAPI32 Assisted Telephony
4 * Copyright 1999 Andreas Mohr
5 */
7 #include "winbase.h"
8 #include "windef.h"
9 #include "tapi.h"
10 #include "debugtools.h"
12 DEFAULT_DEBUG_CHANNEL(tapi);
14 /***********************************************************************
15 * tapiGetLocationInfo (TAPI32.@)
17 DWORD WINAPI tapiGetLocationInfo(LPSTR lpszCountryCode, LPSTR lpszCityCode)
19 char temp[30];
21 FIXME("(%s, %s): file sections ???\n", lpszCountryCode, lpszCityCode);
22 if (!(GetPrivateProfileStringA("Locations", "CurrentLocation", "", temp, 30, "telephon.ini")))
23 return TAPIERR_REQUESTFAILED;
24 if (!(GetPrivateProfileStringA("Locations", "FIXME_ENTRY", "", lpszCityCode, 8, "telephon.ini")))
25 return TAPIERR_REQUESTFAILED;
26 return 0;
29 /***********************************************************************
30 * tapiRequestMakeCall (TAPI32.@)
32 DWORD WINAPI tapiRequestMakeCall(LPCSTR lpszDestAddress, LPCSTR lpszAppName,
33 LPCSTR lpszCalledParty, LPCSTR lpszComment)
35 FIXME("(%s, %s, %s, %s): stub.\n", lpszDestAddress, lpszAppName, lpszCalledParty, lpszComment);
36 return 0;