1999-03-14 13:34:25 +01:00
|
|
|
/*
|
|
|
|
* TAPI32 Assisted Telephony
|
|
|
|
*
|
|
|
|
* Copyright 1999 Andreas Mohr
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "winbase.h"
|
1999-03-14 17:35:05 +01:00
|
|
|
#include "windef.h"
|
1999-03-14 13:34:25 +01:00
|
|
|
#include "tapi.h"
|
1999-05-14 10:17:14 +02:00
|
|
|
#include "debugtools.h"
|
1999-03-14 13:34:25 +01:00
|
|
|
|
2000-03-24 21:46:04 +01:00
|
|
|
DEFAULT_DEBUG_CHANNEL(tapi);
|
1999-04-19 16:56:29 +02:00
|
|
|
|
2000-03-24 21:46:04 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* tapiGetLocationInfo (TAPI32.@)
|
|
|
|
*/
|
1999-03-14 13:34:25 +01:00
|
|
|
DWORD WINAPI tapiGetLocationInfo(LPSTR lpszCountryCode, LPSTR lpszCityCode)
|
|
|
|
{
|
|
|
|
char temp[30];
|
|
|
|
|
1999-05-14 10:17:14 +02:00
|
|
|
FIXME("(%s, %s): file sections ???\n", lpszCountryCode, lpszCityCode);
|
1999-03-14 13:34:25 +01:00
|
|
|
if (!(GetPrivateProfileStringA("Locations", "CurrentLocation", "", temp, 30, "telephon.ini")))
|
|
|
|
return TAPIERR_REQUESTFAILED;
|
|
|
|
if (!(GetPrivateProfileStringA("Locations", "FIXME_ENTRY", "", lpszCityCode, 8, "telephon.ini")))
|
|
|
|
return TAPIERR_REQUESTFAILED;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-03-24 21:46:04 +01:00
|
|
|
/***********************************************************************
|
|
|
|
* tapiRequestMakeCall (TAPI32.@)
|
|
|
|
*/
|
1999-03-14 13:34:25 +01:00
|
|
|
DWORD WINAPI tapiRequestMakeCall(LPCSTR lpszDestAddress, LPCSTR lpszAppName,
|
|
|
|
LPCSTR lpszCalledParty, LPCSTR lpszComment)
|
|
|
|
{
|
1999-05-14 10:17:14 +02:00
|
|
|
FIXME("(%s, %s, %s, %s): stub.\n", lpszDestAddress, lpszAppName, lpszCalledParty, lpszComment);
|
1999-03-14 13:34:25 +01:00
|
|
|
return 0;
|
|
|
|
}
|