wine/dlls/rasapi32/rasapi.c
Marcus Meissner 317af320cf Optimized include/*.h: (recursively) include all headers needed by
this .h file, but only those. Necessary fixes to a lot of .c files,
started optimizing "windows.h" away from some of them. Moved
GetCurrentTask prototype to wine/winbase16.h.
1999-02-17 13:51:06 +00:00

19 lines
455 B
C

/*
* RASAPI32
*
* Copyright 1998 Marcus Meissner
*/
#include "wintypes.h"
#include "ras.h"
#include "debug.h"
/**************************************************************************
* RasEnumConnections32A [RASAPI32.544]
*/
DWORD WINAPI RasEnumConnections32A( LPRASCONN32A rca, LPDWORD x, LPDWORD y) {
/* Remote Access Service stuff is done by underlying OS anyway */
FIXME(ras,"(%p,%p,%p),stub!\n",rca,x,y);
return 0;
}