1998-12-11 14:26:26 +01:00
|
|
|
#ifndef __WINE_RAS_H
|
|
|
|
#define __WINE_RAS_H
|
|
|
|
|
1999-03-14 17:35:05 +01:00
|
|
|
#include "windef.h"
|
1998-12-11 14:26:26 +01:00
|
|
|
|
|
|
|
#define RAS_MaxEntryName 256
|
|
|
|
|
1999-02-26 12:11:13 +01:00
|
|
|
typedef struct tagRASCONNA {
|
1998-12-11 14:26:26 +01:00
|
|
|
DWORD dwSize;
|
1999-02-26 12:11:13 +01:00
|
|
|
HRASCONN hRasConn;
|
1998-12-11 14:26:26 +01:00
|
|
|
CHAR szEntryName[RAS_MaxEntryName+1];
|
1999-02-26 12:11:13 +01:00
|
|
|
} RASCONNA,*LPRASCONNA;
|
1998-12-11 14:26:26 +01:00
|
|
|
|
1999-02-26 12:11:13 +01:00
|
|
|
DWORD WINAPI RasEnumConnectionsA( LPRASCONNA rc, LPDWORD x, LPDWORD y);
|
1998-12-11 14:26:26 +01:00
|
|
|
#endif
|