Avoid dumping the contents of output strings.
This commit is contained in:
parent
8fb2e35c01
commit
0e39462063
|
@ -449,13 +449,13 @@ DWORD WINAPI RasGetEntryPropertiesW(LPCWSTR lpszPhonebook, LPCWSTR lpszEntry, LP
|
||||||
|
|
||||||
DWORD WINAPI RasGetErrorStringA(UINT uErrorValue, LPSTR lpszErrorString, DWORD cBufSize)
|
DWORD WINAPI RasGetErrorStringA(UINT uErrorValue, LPSTR lpszErrorString, DWORD cBufSize)
|
||||||
{
|
{
|
||||||
FIXME("(0x%08x,%s,0x%08lx), stub!\n", uErrorValue, debugstr_a(lpszErrorString), cBufSize);
|
FIXME("(0x%08x,%p,0x%08lx), stub!\n", uErrorValue, lpszErrorString, cBufSize);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
DWORD WINAPI RasGetErrorStringW(UINT uErrorValue, LPWSTR lpszErrorString, DWORD cBufSize)
|
DWORD WINAPI RasGetErrorStringW(UINT uErrorValue, LPWSTR lpszErrorString, DWORD cBufSize)
|
||||||
{
|
{
|
||||||
FIXME("(0x%08x,%s,0x%08lx), stub!\n", uErrorValue, debugstr_w(lpszErrorString), cBufSize);
|
FIXME("(0x%08x,%p,0x%08lx), stub!\n", uErrorValue, lpszErrorString, cBufSize);
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -41,8 +41,8 @@
|
||||||
@ stdcall RasGetEntryDialParamsW(wstr ptr ptr)
|
@ stdcall RasGetEntryDialParamsW(wstr ptr ptr)
|
||||||
@ stdcall RasGetEntryPropertiesA(str str ptr ptr ptr ptr)
|
@ stdcall RasGetEntryPropertiesA(str str ptr ptr ptr ptr)
|
||||||
@ stdcall RasGetEntryPropertiesW(wstr wstr ptr ptr ptr ptr)
|
@ stdcall RasGetEntryPropertiesW(wstr wstr ptr ptr ptr ptr)
|
||||||
@ stdcall RasGetErrorStringA(long str long)
|
@ stdcall RasGetErrorStringA(long ptr long)
|
||||||
@ stdcall RasGetErrorStringW(long wstr long)
|
@ stdcall RasGetErrorStringW(long ptr long)
|
||||||
@ stub RasGetErrorStringWow
|
@ stub RasGetErrorStringWow
|
||||||
@ stub RasGetHport
|
@ stub RasGetHport
|
||||||
@ stdcall RasGetProjectionInfoA(ptr ptr ptr ptr)
|
@ stdcall RasGetProjectionInfoA(ptr ptr ptr ptr)
|
||||||
|
|
Loading…
Reference in New Issue