userenv: Added GetAllUsersProfileDirectory[AW] stubs.
authorPiotr Caban <piotr@codeweavers.com>
Sun, 31 Jan 2010 22:04:11 +0000 (23:04 +0100)
committerAlexandre Julliard <julliard@winehq.org>
Mon, 1 Feb 2010 11:10:44 +0000 (12:10 +0100)
dlls/userenv/userenv.spec
dlls/userenv/userenv_main.c
include/userenv.h

index 95280bfae5e91a678686e21ee50344dd034b803d..26475e5908560e77130380fdd03e520537c3532b 100644 (file)
@@ -2,6 +2,8 @@
 @ stub DestroyEnvironmentBlock
 @ stdcall ExpandEnvironmentStringsForUserA(ptr str ptr long)
 @ stdcall ExpandEnvironmentStringsForUserW(ptr wstr ptr long)
+@ stdcall GetAllUsersProfileDirectoryA(ptr ptr)
+@ stdcall GetAllUsersProfileDirectoryW(ptr ptr)
 @ stdcall GetProfilesDirectoryA(ptr ptr)
 @ stdcall GetProfilesDirectoryW(ptr ptr)
 @ stdcall GetProfileType(ptr)
index 01f3a1b8e6311a19e51457abfa7b4fed562daeb8..8782c9412c5cb2592dea91ddcf5a607b17f66778 100644 (file)
@@ -115,6 +115,18 @@ BOOL WINAPI GetProfilesDirectoryW( LPWSTR lpProfilesDir, LPDWORD lpcchSize )
     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 )
 {
     FIXME("%p\n", pdwFlags );
index 20d7fa1f36065fb87dfa1e4b1e9f6f15cd9a331e..507715f2cfdf33893845347f67bde17372dfa9cc 100644 (file)
@@ -40,6 +40,9 @@ BOOL WINAPI GetUserProfileDirectoryW(HANDLE,LPWSTR,LPDWORD);
 BOOL WINAPI GetProfilesDirectoryA(LPSTR,LPDWORD);
 BOOL WINAPI GetProfilesDirectoryW(LPWSTR,LPDWORD);
 #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 LoadUserProfileA(HANDLE,LPPROFILEINFOA);
 BOOL WINAPI LoadUserProfileW(HANDLE,LPPROFILEINFOW);