Improve error message for RAS not being supported.

This commit is contained in:
Gerald Pfeifer 2003-04-05 05:10:18 +00:00 committed by Alexandre Julliard
parent f5554c3236
commit 686e7d7584
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(ras);
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,lpcb,lpcConnections);
FIXME("RAS support is not implemented ! Configure program to use LAN connection/winsock instead !\n");
FIXME("RAS support is not implemented! Configure program to use LAN connection/winsock instead!\n");
*lpcConnections = 0; /* no RAS connections available */
return 0;
@ -42,7 +42,7 @@ DWORD WINAPI RasEnumConnectionsA( LPRASCONNA rca, LPDWORD lpcb, LPDWORD lpcConne
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");
FIXME("RAS support is not implemented! Configure program to use LAN connection/winsock instead!\n");
*lpcConnections = 0; /* no RAS connections available */
return 0;