RasEnumConnectionsA

Andreas Mohr andi at rhlx01.fht-esslingen.de
Sat Nov 10 08:53:13 CST 2001


Hi all,

- don't forget to initialize number of connections to 0
  This makes AIM 4.7 startup instead of crashing.
- add "RAS doesn't work" warning

-- 
Andreas Mohr                        Stauferstr. 6, D-71272 Renningen, Germany
-------------- next part --------------
Determining best CVS host...
Using CVSROOT :pserver:cvs at rhlx01.fht-esslingen.de:/home/wine
Index: dlls/rasapi32/rasapi.c
===================================================================
RCS file: /home/wine/wine/dlls/rasapi32/rasapi.c,v
retrieving revision 1.14
diff -u -r1.14 rasapi.c
--- dlls/rasapi32/rasapi.c	12 Jul 2001 22:33:51 -0000	1.14
+++ dlls/rasapi32/rasapi.c	10 Nov 2001 14:23:52 -0000
@@ -13,9 +13,12 @@
 /**************************************************************************
  *                 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;
 }
 


More information about the wine-patches mailing list