Window activation cleanups.
[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 "debugtools.h"
11
12 DEFAULT_DEBUG_CHANNEL(tapi);
13
14 /***********************************************************************
15  *              tapiGetLocationInfo (TAPI32.@)
16  */
17 DWORD WINAPI tapiGetLocationInfo(LPSTR lpszCountryCode, LPSTR lpszCityCode)
18 {
19     char temp[30];
20     
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;
27 }
28
29 /***********************************************************************
30  *              tapiRequestMakeCall (TAPI32.@)
31  */
32 DWORD WINAPI tapiRequestMakeCall(LPCSTR lpszDestAddress, LPCSTR lpszAppName,
33                                  LPCSTR lpszCalledParty, LPCSTR lpszComment)
34 {
35     FIXME("(%s, %s, %s, %s): stub.\n", lpszDestAddress, lpszAppName, lpszCalledParty, lpszComment);
36     return 0;
37 }