userenv: Add a stub for GetDefaultUserProfileDirectoryA/W.
This commit is contained in:
parent
60827da9d5
commit
84972be4aa
|
@ -6,6 +6,8 @@
|
|||
@ stdcall ExpandEnvironmentStringsForUserW(ptr wstr ptr long)
|
||||
@ stdcall GetAllUsersProfileDirectoryA(ptr ptr)
|
||||
@ stdcall GetAllUsersProfileDirectoryW(ptr ptr)
|
||||
@ stdcall GetDefaultUserProfileDirectoryA(ptr ptr)
|
||||
@ stdcall GetDefaultUserProfileDirectoryW(ptr ptr)
|
||||
@ stdcall GetProfilesDirectoryA(ptr ptr)
|
||||
@ stdcall GetProfilesDirectoryW(ptr ptr)
|
||||
@ stdcall GetProfileType(ptr)
|
||||
|
|
|
@ -100,6 +100,18 @@ BOOL WINAPI ExpandEnvironmentStringsForUserW( HANDLE hToken, LPCWSTR lpSrc,
|
|||
return ret;
|
||||
}
|
||||
|
||||
BOOL WINAPI GetDefaultUserProfileDirectoryA( LPSTR lpProfileDir, LPDWORD lpcchSize )
|
||||
{
|
||||
FIXME("%p %p\n", lpProfileDir, lpcchSize );
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI GetDefaultUserProfileDirectoryW( LPWSTR lpProfileDir, LPDWORD lpcchSize )
|
||||
{
|
||||
FIXME("%p %p\n", lpProfileDir, lpcchSize );
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
BOOL WINAPI GetUserProfileDirectoryA( HANDLE hToken, LPSTR lpProfileDir,
|
||||
LPDWORD lpcchSize )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue