wine-wine/dlls/rasapi32/rasapi.c

55 lines
1.5 KiB
C
Raw Normal View History

1998-12-11 13:26:26 +00:00
/*
* RASAPI32
*
* Copyright 1998 Marcus Meissner
*/
1999-03-14 16:35:05 +00:00
#include "windef.h"
1998-12-11 13:26:26 +00:00
#include "ras.h"
#include "debugtools.h"
1998-12-11 13:26:26 +00:00
DEFAULT_DEBUG_CHANNEL(ras);
1998-12-11 13:26:26 +00:00
/**************************************************************************
* RasEnumConnectionsA [RASAPI32.544]
1998-12-11 13:26:26 +00:00
*/
DWORD WINAPI RasEnumConnectionsA( LPRASCONNA rca, LPDWORD x, LPDWORD y) {
1998-12-11 13:26:26 +00:00
/* Remote Access Service stuff is done by underlying OS anyway */
FIXME("(%p,%p,%p),stub!\n",rca,x,y);
1998-12-11 13:26:26 +00:00
return 0;
}
/**************************************************************************
* RasEnumEntriesA [RASAPI32.546]
*/
DWORD WINAPI RasEnumEntriesA( LPSTR Reserved, LPSTR lpszPhoneBook,
LPRASENTRYNAME lpRasEntryName,
LPDWORD lpcb, LPDWORD lpcEntries)
{
FIXME("(%p,%s,%p,%p,%p),stub!\n",Reserved,debugstr_a(lpszPhoneBook),
lpRasEntryName,lpcb,lpcEntries);
*lpcEntries = 0;
return 0;
}
/**************************************************************************
* RasGetEntryDialParamsA [RASAPI32.550]
*/
DWORD WINAPI RasGetEntryDialParamsA( LPSTR lpszPhoneBook,
LPRASDIALPARAMS lpRasDialParams,
LPBOOL lpfPassword)
{
FIXME("(%s,%p,%p),stub!\n",debugstr_a(lpszPhoneBook),
lpRasDialParams,lpfPassword);
return 0;
}
2000-07-23 13:32:57 +00:00
/**************************************************************************
* RasHangUpA [RASAPI32.556]
*/
DWORD WINAPI RasHangUpA( HRASCONN hrasconn)
{
FIXME("(%x),stub!\n",hrasconn);
return 0;
}