Commit f90b60e2 authored by Gerard Patel's avatar Gerard Patel Committed by Alexandre Julliard

Complete stub for RasEnumEntries by saying we have 0 entries.

parent 321a1972
...@@ -28,6 +28,7 @@ DWORD WINAPI RasEnumEntriesA( LPSTR Reserved, LPSTR lpszPhoneBook, ...@@ -28,6 +28,7 @@ DWORD WINAPI RasEnumEntriesA( LPSTR Reserved, LPSTR lpszPhoneBook,
{ {
FIXME("(%p,%s,%p,%p,%p),stub!\n",Reserved,debugstr_a(lpszPhoneBook), FIXME("(%p,%s,%p,%p,%p),stub!\n",Reserved,debugstr_a(lpszPhoneBook),
lpRasEntryName,lpcb,lpcEntries); lpRasEntryName,lpcb,lpcEntries);
*lpcEntries = 0;
return 0; return 0;
} }
......
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