Sweden-Number/include/ras.h

16 lines
305 B
C
Raw Normal View History

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