Commit c8ad3cb7 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Add stubs for RasDeleteSubEntry* (new in WinMe/WinXP).

Add prototypes for RasDeleteEntry* and RasDeleteSubEntry* in ras.h.
parent 3cf874bb
...@@ -51,6 +51,9 @@ ...@@ -51,6 +51,9 @@
44 stub RasGetErrorStringWow 44 stub RasGetErrorStringWow
54 stub RasHangUpWow 54 stub RasHangUpWow
@ stub RasDeleteSubEntryA
@ stub RasDeleteSubEntryW
500 stub RnaEngineRequest 500 stub RnaEngineRequest
501 stub DialEngineRequest 501 stub DialEngineRequest
502 stub SuprvRequest 502 stub SuprvRequest
......
...@@ -312,7 +312,12 @@ typedef struct tagRASENTRYW { ...@@ -312,7 +312,12 @@ typedef struct tagRASENTRYW {
DECL_WINELIB_TYPE_AW(RASENTRY) DECL_WINELIB_TYPE_AW(RASENTRY)
DWORD WINAPI RasDeleteEntryA(LPCSTR,LPCSTR);
DWORD WINAPI RasDeleteEntryW(LPCWSTR,LPCWSTR);
#define RasDeleteEntry WINELIB_NAME_AW(RasDeleteEntry)
DWORD WINAPI RasDeleteSubEntryA(LPCSTR,LPCSTR,DWORD);
DWORD WINAPI RasDeleteSubEntryW(LPCWSTR,LPCWSTR,DWORD);
#define RasDeleteSubEntry WINELIB_NAME_AW(RasDeleteSubEntry)
DWORD WINAPI RasEnumConnectionsA(LPRASCONNA,LPDWORD,LPDWORD); DWORD WINAPI RasEnumConnectionsA(LPRASCONNA,LPDWORD,LPDWORD);
DWORD WINAPI RasEnumConnectionsW(LPRASCONNW,LPDWORD,LPDWORD); DWORD WINAPI RasEnumConnectionsW(LPRASCONNW,LPDWORD,LPDWORD);
#define RasEnumConnections WINELIB_NAME_AW(RasEnumConnections) #define RasEnumConnections WINELIB_NAME_AW(RasEnumConnections)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment