blob: cbd3e99047dfbc01f81629ff78104f3a0cf2de98 [file] [log] [blame]
Marcus Meissner30ef8771998-12-11 13:26:26 +00001#ifndef __WINE_RAS_H
2#define __WINE_RAS_H
3
Jim Aston2e1cafa1999-03-14 16:35:05 +00004#include "windef.h"
Marcus Meissner30ef8771998-12-11 13:26:26 +00005
6#define RAS_MaxEntryName 256
7
Alexandre Julliarda3960291999-02-26 11:11:13 +00008typedef struct tagRASCONNA {
Marcus Meissner30ef8771998-12-11 13:26:26 +00009 DWORD dwSize;
Alexandre Julliarda3960291999-02-26 11:11:13 +000010 HRASCONN hRasConn;
Marcus Meissner30ef8771998-12-11 13:26:26 +000011 CHAR szEntryName[RAS_MaxEntryName+1];
Alexandre Julliarda3960291999-02-26 11:11:13 +000012} RASCONNA,*LPRASCONNA;
Marcus Meissner30ef8771998-12-11 13:26:26 +000013
Alexandre Julliarda3960291999-02-26 11:11:13 +000014DWORD WINAPI RasEnumConnectionsA( LPRASCONNA rc, LPDWORD x, LPDWORD y);
Marcus Meissner30ef8771998-12-11 13:26:26 +000015#endif