1999-03-14 13:34:25 +01:00
|
|
|
/*
|
|
|
|
* TAPI32 Assisted Telephony
|
|
|
|
*
|
|
|
|
* Copyright 1999 Andreas Mohr
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1999-03-14 13:34:25 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
1999-03-14 13:34:25 +01:00
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_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];
|
2002-06-01 01:06:46 +02:00
|
|
|
|
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;
|
2002-06-01 01:06:46 +02:00
|
|
|
if (!(GetPrivateProfileStringA("Locations", "FIXME_ENTRY", "", lpszCityCode, 8, "telephon.ini")))
|
1999-03-14 13:34:25 +01:00
|
|
|
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;
|
|
|
|
}
|