1998-12-11 14:26:26 +01:00
|
|
|
/*
|
|
|
|
* RASAPI32
|
|
|
|
*
|
|
|
|
* Copyright 1998 Marcus Meissner
|
|
|
|
*/
|
|
|
|
|
1999-03-14 17:35:05 +01:00
|
|
|
#include "windef.h"
|
1998-12-11 14:26:26 +01:00
|
|
|
#include "ras.h"
|
1999-05-14 10:17:14 +02:00
|
|
|
#include "debugtools.h"
|
1998-12-11 14:26:26 +01:00
|
|
|
|
1999-04-19 16:56:29 +02:00
|
|
|
DEFAULT_DEBUG_CHANNEL(ras)
|
|
|
|
|
1998-12-11 14:26:26 +01:00
|
|
|
/**************************************************************************
|
|
|
|
* 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 */
|
1999-05-14 10:17:14 +02:00
|
|
|
FIXME("(%p,%p,%p),stub!\n",rca,x,y);
|
1998-12-11 14:26:26 +01:00
|
|
|
return 0;
|
|
|
|
}
|