Added support for forwarded ordinals in built-in dlls.
[wine/multimedia.git] / dlls / tapi32 / assisted.c
blob07cf8e1d5212ba3016390af54d41fdbff542c06b
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 DEFAULT_DEBUG_CHANNEL(tapi)
14 DWORD WINAPI tapiGetLocationInfo(LPSTR lpszCountryCode, LPSTR lpszCityCode)
16 char temp[30];
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;
26 DWORD WINAPI tapiRequestMakeCall(LPCSTR lpszDestAddress, LPCSTR lpszAppName,
27 LPCSTR lpszCalledParty, LPCSTR lpszComment)
29 FIXME(tapi, "(%s, %s, %s, %s): stub.\n", lpszDestAddress, lpszAppName, lpszCalledParty, lpszComment);
30 return 0;