New debug scheme with explicit debug channels declaration.
[wine] / dlls / tapi32 / assisted.c
1 /*
2  * TAPI32 Assisted Telephony
3  *
4  * Copyright 1999  Andreas Mohr
5  */
6
7 #include "winbase.h"
8 #include "windef.h"
9 #include "tapi.h"
10 #include "debug.h"
11
12 DEFAULT_DEBUG_CHANNEL(tapi)
13
14 DWORD WINAPI tapiGetLocationInfo(LPSTR lpszCountryCode, LPSTR lpszCityCode)
15 {
16     char temp[30];
17     
18     FIXME(tapi, "(%s, %s): file sections ???\n", lpszCountryCode, lpszCityCode);
19     if (!(GetPrivateProfileStringA("Locations", "CurrentLocation", "", temp, 30, "telephon.ini")))
20         return TAPIERR_REQUESTFAILED;
21     if (!(GetPrivateProfileStringA("Locations", "FIXME_ENTRY", "", lpszCityCode, 8, "telephon.ini"))) 
22         return TAPIERR_REQUESTFAILED;
23     return 0;
24 }
25
26 DWORD WINAPI tapiRequestMakeCall(LPCSTR lpszDestAddress, LPCSTR lpszAppName,
27                                  LPCSTR lpszCalledParty, LPCSTR lpszComment)
28 {
29     FIXME(tapi, "(%s, %s, %s, %s): stub.\n", lpszDestAddress, lpszAppName, lpszCalledParty, lpszComment);
30     return 0;
31 }