Commit 290aec59 authored by Stanislav Motylkov's avatar Stanislav Motylkov Committed by Alexandre Julliard

rasapi32: Add stub for RasGetConnectionStatistics.

parent 664e861c
......@@ -5,7 +5,7 @@
@ stdcall RasEnumEntriesW(wstr wstr ptr ptr ptr) rasapi32.RasEnumEntriesW
@ stdcall RasGetAutodialAddressA(str ptr ptr ptr ptr) rasapi32.RasGetAutodialAddressA
@ stdcall RasGetAutodialAddressW(wstr ptr ptr ptr ptr) rasapi32.RasGetAutodialAddressW
@ stub RasGetConnectionStatistics
@ stdcall RasGetConnectionStatistics(ptr ptr) rasapi32.RasGetConnectionStatistics
@ stdcall RasGetConnectStatusW(ptr ptr) rasapi32.RasGetConnectStatusW
@ stub RasGetCredentialsW
@ stdcall RasGetEntryDialParamsW(wstr ptr ptr) rasapi32.RasGetEntryDialParamsW
......
......@@ -547,3 +547,9 @@ DWORD WINAPI RasGetLinkStatistics(HRASCONN connection, DWORD entry, RAS_STATS *s
FIXME("(%p,%u,%p), stub!\n", connection, entry, statistics);
return 0;
}
DWORD WINAPI RasGetConnectionStatistics(HRASCONN connection, RAS_STATS *statistics)
{
FIXME("(%p,%p), stub!\n", connection, statistics);
return ERROR_UNKNOWN;
}
......@@ -33,6 +33,7 @@
@ stdcall RasGetConnectStatusA(ptr ptr)
@ stdcall RasGetConnectStatusW(ptr ptr)
@ stub RasGetConnectStatusWow
@ stdcall RasGetConnectionStatistics(ptr ptr)
@ stub RasGetCountryInfoA
@ stub RasGetCountryInfoW
@ stub RasGetCredentialsA
......
......@@ -23,6 +23,7 @@
#define ERROR_BUFFER_TOO_SMALL (RASBASE+3)
#define ERROR_BUFFER_INVALID (RASBASE+10)
#define ERROR_INVALID_SIZE (RASBASE+32)
#define ERROR_UNKNOWN (RASBASE+35)
#define ERROR_STATE_MACHINES_NOT_STARTED (RASBASE+95)
#define ERROR_RASMAN_CANNOT_INITIALIZE (RASBASE+111)
......
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