2 * TAPI32 Assisted Telephony
4 * Copyright 1999 Andreas Mohr
10 #include "debugtools.h"
12 DEFAULT_DEBUG_CHANNEL(tapi
);
14 /***********************************************************************
15 * tapiGetLocationInfo (TAPI32.@)
17 DWORD WINAPI
tapiGetLocationInfo(LPSTR lpszCountryCode
, LPSTR lpszCityCode
)
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
;
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
);