Commit 7f7c6477 authored by Andreas Mohr's avatar Andreas Mohr Committed by Alexandre Julliard

- don't forget to initialize number of connections to 0

- add "RAS doesn't work" warning
parent 78bae032
...@@ -13,9 +13,12 @@ DEFAULT_DEBUG_CHANNEL(ras); ...@@ -13,9 +13,12 @@ DEFAULT_DEBUG_CHANNEL(ras);
/************************************************************************** /**************************************************************************
* RasEnumConnectionsA [RASAPI32.544] * RasEnumConnectionsA [RASAPI32.544]
*/ */
DWORD WINAPI RasEnumConnectionsA( LPRASCONNA rca, LPDWORD x, LPDWORD y) { DWORD WINAPI RasEnumConnectionsA( LPRASCONNA rca, LPDWORD lpcb, LPDWORD lpcConnections) {
/* Remote Access Service stuff is done by underlying OS anyway */ /* Remote Access Service stuff is done by underlying OS anyway */
FIXME("(%p,%p,%p),stub!\n",rca,x,y); FIXME("(%p,%p,%p),stub!\n",rca,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; return 0;
} }
......
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