Commit b0e122f4 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

rasapi32: Add RasGetLinkStatistics stub.

parent d92dc216
...@@ -539,3 +539,9 @@ DWORD WINAPI RasSetSubEntryPropertiesW(LPCWSTR lpszPhonebook, LPCWSTR lpszEntry, ...@@ -539,3 +539,9 @@ DWORD WINAPI RasSetSubEntryPropertiesW(LPCWSTR lpszPhonebook, LPCWSTR lpszEntry,
dwcbDeviceConfig); dwcbDeviceConfig);
return 0; return 0;
} }
DWORD WINAPI RasGetLinkStatistics(HRASCONN connection, DWORD entry, RAS_STATS *statistics)
{
FIXME("(%p,%u,%p), stub!\n", connection, entry, statistics);
return 0;
}
...@@ -45,6 +45,7 @@ ...@@ -45,6 +45,7 @@
@ stdcall RasGetErrorStringW(long ptr long) @ stdcall RasGetErrorStringW(long ptr long)
@ stub RasGetErrorStringWow @ stub RasGetErrorStringWow
@ stub RasGetHport @ stub RasGetHport
@ stdcall RasGetLinkStatistics(ptr long ptr)
@ stdcall RasGetProjectionInfoA(ptr ptr ptr ptr) @ stdcall RasGetProjectionInfoA(ptr ptr ptr ptr)
@ stdcall RasGetProjectionInfoW(ptr ptr ptr ptr) @ stdcall RasGetProjectionInfoW(ptr ptr ptr ptr)
@ stub RasGetSubEntryHandleA @ stub RasGetSubEntryHandleA
......
...@@ -426,6 +426,24 @@ typedef struct tagRASAUTODIALENTRYW ...@@ -426,6 +426,24 @@ typedef struct tagRASAUTODIALENTRYW
WCHAR szEntry[ RAS_MaxEntryName + 1 ]; WCHAR szEntry[ RAS_MaxEntryName + 1 ];
} RASAUTODIALENTRYW, *LPRASAUTODIALENTRYW; } RASAUTODIALENTRYW, *LPRASAUTODIALENTRYW;
typedef struct _RAS_STATS
{
DWORD dwSize;
DWORD dwBytesXmited;
DWORD dwBytesRcved;
DWORD dwFramesXmited;
DWORD dwFramesRcved;
DWORD dwCrcErr;
DWORD dwTimeoutErr;
DWORD dwAlignmentErr;
DWORD dwHardwareOverrunErr;
DWORD dwFramingErr;
DWORD dwBufferOverrunErr;
DWORD dwCompressionRatioIn;
DWORD dwCompressionRatioOut;
DWORD dwBps;
DWORD dwConnectDuration;
} RAS_STATS, *PRAS_STATS;
DWORD WINAPI RasConnectionNotificationA(HRASCONN,HANDLE,DWORD); DWORD WINAPI RasConnectionNotificationA(HRASCONN,HANDLE,DWORD);
DWORD WINAPI RasConnectionNotificationW(HRASCONN,HANDLE,DWORD); DWORD WINAPI RasConnectionNotificationW(HRASCONN,HANDLE,DWORD);
......
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