1998-12-11 14:26:26 +01:00
|
|
|
/*
|
|
|
|
* RASAPI32
|
|
|
|
*
|
|
|
|
* Copyright 1998 Marcus Meissner
|
|
|
|
*/
|
|
|
|
|
1999-02-17 14:51:06 +01:00
|
|
|
#include "wintypes.h"
|
1998-12-11 14:26:26 +01:00
|
|
|
#include "ras.h"
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* RasEnumConnections32A [RASAPI32.544]
|
|
|
|
*/
|
1999-02-26 12:11:13 +01:00
|
|
|
DWORD WINAPI RasEnumConnectionsA( LPRASCONNA rca, LPDWORD x, LPDWORD y) {
|
1998-12-11 14:26:26 +01:00
|
|
|
/* Remote Access Service stuff is done by underlying OS anyway */
|
|
|
|
FIXME(ras,"(%p,%p,%p),stub!\n",rca,x,y);
|
|
|
|
return 0;
|
|
|
|
}
|