wine/dlls/rasapi32/rasapi.c
François Gouget ce03ac889c Moved HRASCONN from windef.h.
Added missing Unicode type and function definitions.
Added a few missing macro definitions.
Enclose in an extern "C" for C++ Winelib applications.
Added the structure packing specification.
2000-12-24 20:44:08 +00:00

55 lines
1.5 KiB
C

/*
* RASAPI32
*
* Copyright 1998 Marcus Meissner
*/
#include "windef.h"
#include "ras.h"
#include "debugtools.h"
DEFAULT_DEBUG_CHANNEL(ras);
/**************************************************************************
* RasEnumConnectionsA [RASAPI32.544]
*/
DWORD WINAPI RasEnumConnectionsA( LPRASCONNA rca, LPDWORD x, LPDWORD y) {
/* Remote Access Service stuff is done by underlying OS anyway */
FIXME("(%p,%p,%p),stub!\n",rca,x,y);
return 0;
}
/**************************************************************************
* RasEnumEntriesA [RASAPI32.546]
*/
DWORD WINAPI RasEnumEntriesA( LPCSTR Reserved, LPCSTR lpszPhoneBook,
LPRASENTRYNAMEA 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( LPCSTR lpszPhoneBook,
LPRASDIALPARAMSA lpRasDialParams,
LPBOOL lpfPassword)
{
FIXME("(%s,%p,%p),stub!\n",debugstr_a(lpszPhoneBook),
lpRasDialParams,lpfPassword);
return 0;
}
/**************************************************************************
* RasHangUpA [RASAPI32.556]
*/
DWORD WINAPI RasHangUpA( HRASCONN hrasconn)
{
FIXME("(%x),stub!\n",hrasconn);
return 0;
}