Complete stub for RasEnumEntries by saying we have 0 entries.
[wine.git] / dlls / rasapi32 / rasapi.c
blob101479d60c25490785e33a9c46bf888d43a9b8b4
1 /*
2 * RASAPI32
3 *
4 * Copyright 1998 Marcus Meissner
5 */
7 #include "windef.h"
8 #include "ras.h"
9 #include "debugtools.h"
11 DEFAULT_DEBUG_CHANNEL(ras)
13 /**************************************************************************
14 * RasEnumConnections32A [RASAPI32.544]
16 DWORD WINAPI RasEnumConnectionsA( LPRASCONNA rca, LPDWORD x, LPDWORD y) {
17 /* Remote Access Service stuff is done by underlying OS anyway */
18 FIXME("(%p,%p,%p),stub!\n",rca,x,y);
19 return 0;
22 /**************************************************************************
23 * RasEnumEntriesA [RASAPI32.546]
25 DWORD WINAPI RasEnumEntriesA( LPSTR Reserved, LPSTR lpszPhoneBook,
26 LPRASENTRYNAME lpRasEntryName,
27 LPDWORD lpcb, LPDWORD lpcEntries)
29 FIXME("(%p,%s,%p,%p,%p),stub!\n",Reserved,debugstr_a(lpszPhoneBook),
30 lpRasEntryName,lpcb,lpcEntries);
31 *lpcEntries = 0;
32 return 0;
35 /**************************************************************************
36 * RasGetEntryDialParamsA [RASAPI32.550]
38 DWORD WINAPI RasGetEntryDialParamsA( LPSTR lpszPhoneBook,
39 LPRASDIALPARAMS lpRasDialParams,
40 LPBOOL lpfPassword)
42 FIXME("(%s,%p,%p),stub!\n",debugstr_a(lpszPhoneBook),
43 lpRasDialParams,lpfPassword);
44 return 0;