Commit 1cd81540 authored by Ryan Cumming's avatar Ryan Cumming Committed by Alexandre Julliard

Add stub for RasEnumConnectionsW.

parent 8712174c
......@@ -37,6 +37,18 @@ DWORD WINAPI RasEnumConnectionsA( LPRASCONNA rca, LPDWORD lpcb, LPDWORD lpcConne
}
/**************************************************************************
* RasEnumConnectionsW [RASAPI32.545]
*/
DWORD WINAPI RasEnumConnectionsW( LPRASCONNW rcw, LPDWORD lpcb, LPDWORD lpcConnections) {
/* Remote Access Service stuff is done by underlying OS anyway */
FIXME("(%p,%p,%p),stub!\n",rcw,lpcb,lpcConnections);
FIXME("RAS support is not implemented ! Configure program to use LAN connection/winsock instead !\n");
*lpcConnections = 0; /* no RAS connections available */
return 0;
}
/**************************************************************************
* RasEnumEntriesA [RASAPI32.546]
*/
DWORD WINAPI RasEnumEntriesA( LPCSTR Reserved, LPCSTR lpszPhoneBook,
......
......@@ -96,7 +96,7 @@
542 stub RasEditPhonebookEntryA
543 stub RasEditPhonebookEntryW
544 stdcall RasEnumConnectionsA(ptr ptr ptr) RasEnumConnectionsA
545 stub RasEnumConnectionsW
545 stdcall RasEnumConnectionsW(ptr ptr ptr) RasEnumConnectionsW
546 stdcall RasEnumEntriesA(str str ptr ptr ptr) RasEnumEntriesA
547 stub RasEnumEntriesW
548 stub RasGetConnectStatusA
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment