userenv: Added GetAllUsersProfileDirectory[AW] stubs.
This commit is contained in:
parent
9310ee0ef4
commit
6981816388
|
@ -2,6 +2,8 @@
|
||||||
@ stub DestroyEnvironmentBlock
|
@ stub DestroyEnvironmentBlock
|
||||||
@ stdcall ExpandEnvironmentStringsForUserA(ptr str ptr long)
|
@ stdcall ExpandEnvironmentStringsForUserA(ptr str ptr long)
|
||||||
@ stdcall ExpandEnvironmentStringsForUserW(ptr wstr ptr long)
|
@ stdcall ExpandEnvironmentStringsForUserW(ptr wstr ptr long)
|
||||||
|
@ stdcall GetAllUsersProfileDirectoryA(ptr ptr)
|
||||||
|
@ stdcall GetAllUsersProfileDirectoryW(ptr ptr)
|
||||||
@ stdcall GetProfilesDirectoryA(ptr ptr)
|
@ stdcall GetProfilesDirectoryA(ptr ptr)
|
||||||
@ stdcall GetProfilesDirectoryW(ptr ptr)
|
@ stdcall GetProfilesDirectoryW(ptr ptr)
|
||||||
@ stdcall GetProfileType(ptr)
|
@ stdcall GetProfileType(ptr)
|
||||||
|
|
|
@ -115,6 +115,18 @@ BOOL WINAPI GetProfilesDirectoryW( LPWSTR lpProfilesDir, LPDWORD lpcchSize )
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI GetAllUsersProfileDirectoryA( LPSTR lpProfileDir, LPDWORD lpcchSize )
|
||||||
|
{
|
||||||
|
FIXME("%p %p\n", lpProfileDir, lpcchSize);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
BOOL WINAPI GetAllUsersProfileDirectoryW( LPWSTR lpProfileDir, LPDWORD lpcchSize )
|
||||||
|
{
|
||||||
|
FIXME("%p %p\n", lpProfileDir, lpcchSize);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
BOOL WINAPI GetProfileType( DWORD *pdwFlags )
|
BOOL WINAPI GetProfileType( DWORD *pdwFlags )
|
||||||
{
|
{
|
||||||
FIXME("%p\n", pdwFlags );
|
FIXME("%p\n", pdwFlags );
|
||||||
|
|
|
@ -40,6 +40,9 @@ BOOL WINAPI GetUserProfileDirectoryW(HANDLE,LPWSTR,LPDWORD);
|
||||||
BOOL WINAPI GetProfilesDirectoryA(LPSTR,LPDWORD);
|
BOOL WINAPI GetProfilesDirectoryA(LPSTR,LPDWORD);
|
||||||
BOOL WINAPI GetProfilesDirectoryW(LPWSTR,LPDWORD);
|
BOOL WINAPI GetProfilesDirectoryW(LPWSTR,LPDWORD);
|
||||||
#define GetProfilesDirectory WINELIB_NAME_AW(GetProfilesDirectory)
|
#define GetProfilesDirectory WINELIB_NAME_AW(GetProfilesDirectory)
|
||||||
|
BOOL WINAPI GetAllUsersProfileDirectoryA(LPSTR,LPDWORD);
|
||||||
|
BOOL WINAPI GetAllUsersProfileDirectoryW(LPWSTR,LPDWORD);
|
||||||
|
#define GetAllUsersProfileDirectory WINELIB_NAME_AW(GetAllUsersProfileDirectory)
|
||||||
BOOL WINAPI GetProfileType(DWORD*);
|
BOOL WINAPI GetProfileType(DWORD*);
|
||||||
BOOL WINAPI LoadUserProfileA(HANDLE,LPPROFILEINFOA);
|
BOOL WINAPI LoadUserProfileA(HANDLE,LPPROFILEINFOA);
|
||||||
BOOL WINAPI LoadUserProfileW(HANDLE,LPPROFILEINFOW);
|
BOOL WINAPI LoadUserProfileW(HANDLE,LPPROFILEINFOW);
|
||||||
|
|
Loading…
Reference in New Issue