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

- add "RAS doesn't work" warning
oldstable
Andreas Mohr 2001-11-12 15:46:33 +00:00 committed by Alexandre Julliard
parent 78bae03241
commit 7f7c6477d3
1 changed files with 5 additions and 2 deletions

View File

@ -13,9 +13,12 @@ DEFAULT_DEBUG_CHANNEL(ras);
/**************************************************************************
* 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 */
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;
}