projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
ver.h is a legacy header. winver.h should be used instead.
[wine]
/
include
/
ras.h
1
#ifndef __WINE_RAS_H
2
#define __WINE_RAS_H
3
4
#include "windef.h"
5
6
#define RAS_MaxEntryName 256
7
8
typedef struct tagRASCONNA {
9
DWORD dwSize;
10
HRASCONN hRasConn;
11
CHAR szEntryName[RAS_MaxEntryName+1];
12
} RASCONNA,*LPRASCONNA;
13
14
DWORD WINAPI RasEnumConnectionsA( LPRASCONNA rc, LPDWORD x, LPDWORD y);
15
#endif