Cosmetics.
[wine.git] / dlls / tapi32 / assisted.c
blobdd7d8d218964afe269ba2581888e0ca5c17cf369
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 "debug.h"
12 DWORD WINAPI tapiGetLocationInfo(LPSTR lpszCountryCode, LPSTR lpszCityCode)
14 char temp[30];
16 FIXME(tapi, "(%s, %s): file sections ???\n", lpszCountryCode, lpszCityCode);
17 if (!(GetPrivateProfileStringA("Locations", "CurrentLocation", "", temp, 30, "telephon.ini")))
18 return TAPIERR_REQUESTFAILED;
19 if (!(GetPrivateProfileStringA("Locations", "FIXME_ENTRY", "", lpszCityCode, 8, "telephon.ini")))
20 return TAPIERR_REQUESTFAILED;
21 return 0;
24 DWORD WINAPI tapiRequestMakeCall(LPCSTR lpszDestAddress, LPCSTR lpszAppName,
25 LPCSTR lpszCalledParty, LPCSTR lpszComment)
27 FIXME(tapi, "(%s, %s, %s, %s): stub.\n", lpszDestAddress, lpszAppName, lpszCalledParty, lpszComment);
28 return 0;