Commit 8160170d authored by Christian Costa's avatar Christian Costa Committed by Alexandre Julliard

Added stub for RasGetEntryPropertiesA.

parent 872ed63b
......@@ -324,3 +324,14 @@ DWORD WINAPI RasValidateEntryNameW(LPCWSTR lpszPhonebook, LPCWSTR lpszEntry) {
FIXME("(%s,%s), stub!\n",debugstr_w(lpszPhonebook),debugstr_w(lpszEntry));
return 0;
}
/**************************************************************************
* RasGetEntryPropertiesA [RASAPI32.@]
*/
DWORD WINAPI RasGetEntryPropertiesA(LPCSTR lpszPhonebook, LPCSTR lpszEntry, LPRASENTRYA lpRasEntry,
LPDWORD lpdwEntryInfoSize, LPBYTE lpbDeviceInfo, LPDWORD lpdwDeviceInfoSize
) {
FIXME("(%s,%s,%p,%p,%p,%p), stub!\n", lpszPhonebook, lpszEntry, lpRasEntry, lpdwEntryInfoSize,
lpbDeviceInfo, lpdwDeviceInfoSize);
return 0;
}
......@@ -39,7 +39,7 @@
@ stub RasGetCredentialsW
@ stdcall RasGetEntryDialParamsA(str ptr ptr)
@ stub RasGetEntryDialParamsW
@ stub RasGetEntryPropertiesA
@ stdcall RasGetEntryPropertiesA(str str ptr ptr ptr ptr)
@ stub RasGetEntryPropertiesW
@ stub RasGetErrorStringA
@ stub RasGetErrorStringW
......
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