rasapi32: Add RasSetCredentialsA/W stubs.
Based on a patch by Oleg Dubinskiy. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49726 Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
2d8fa6b4d1
commit
84d85a3d72
|
@ -496,6 +496,18 @@ DWORD WINAPI RasRenameEntryW(LPCWSTR lpszPhonebook, LPCWSTR lpszOldEntry, LPCWST
|
|||
return 0;
|
||||
}
|
||||
|
||||
DWORD WINAPI RasSetCredentialsA(const char *phonebook, const char *entry, RASCREDENTIALSA *credentials, BOOL clear)
|
||||
{
|
||||
FIXME("(%s,%s,%p,0x%x), stub!\n", debugstr_a(phonebook), debugstr_a(entry), credentials, clear);
|
||||
return ERROR_UNKNOWN;
|
||||
}
|
||||
|
||||
DWORD WINAPI RasSetCredentialsW(const WCHAR *phonebook, const WCHAR *entry, RASCREDENTIALSW *credentials, BOOL clear)
|
||||
{
|
||||
FIXME("(%s,%s,%p,0x%x), stub!\n", debugstr_w(phonebook), debugstr_w(entry), credentials, clear);
|
||||
return ERROR_UNKNOWN;
|
||||
}
|
||||
|
||||
DWORD WINAPI RasSetCustomAuthDataA(const char *phonebook, const char *entry, BYTE *authdata, DWORD size)
|
||||
{
|
||||
FIXME("(%s,%s,%p,0x%08x), stub!\n", debugstr_a(phonebook), debugstr_a(entry), authdata, size);
|
||||
|
|
|
@ -126,8 +126,8 @@
|
|||
@ stdcall RasSetAutodialEnableW(long long)
|
||||
@ stdcall RasSetAutodialParamA(long ptr long)
|
||||
@ stdcall RasSetAutodialParamW(long ptr long)
|
||||
@ stub RasSetCredentialsA
|
||||
@ stub RasSetCredentialsW
|
||||
@ stdcall RasSetCredentialsA(str str ptr long)
|
||||
@ stdcall RasSetCredentialsW(wstr wstr ptr long)
|
||||
@ stdcall RasSetCustomAuthDataA(str str ptr long)
|
||||
@ stdcall RasSetCustomAuthDataW(wstr wstr ptr long)
|
||||
# @ stub RasSetEapUserDataA
|
||||
|
|
Loading…
Reference in New Issue