From 46bbe29d9ec3a4e52f4aecd341a36cf9652a01c1 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Sun, 4 Dec 2016 15:56:44 +0000 Subject: [PATCH] [INCLUDE] Add CreateUserProfileExA and CreateUserProfileExW prototypes to userenv.h. svn path=/trunk/; revision=73423 --- reactos/sdk/include/psdk/userenv.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/reactos/sdk/include/psdk/userenv.h b/reactos/sdk/include/psdk/userenv.h index a8cd57dda3e..836de5c3a04 100644 --- a/reactos/sdk/include/psdk/userenv.h +++ b/reactos/sdk/include/psdk/userenv.h @@ -89,6 +89,8 @@ typedef struct _GROUP_POLICY_OBJECTW { BOOL WINAPI InitializeProfiles (VOID); BOOL WINAPI CreateUserProfileA (PSID, LPCSTR); BOOL WINAPI CreateUserProfileW (PSID, LPCWSTR); +BOOL WINAPI CreateUserProfileExA (PSID, LPCSTR, LPCSTR, LPSTR, DWORD, BOOL); +BOOL WINAPI CreateUserProfileExW (PSID, LPCWSTR, LPCWSTR, LPWSTR, DWORD, BOOL); BOOL WINAPI AddDesktopItemA (BOOL, LPCSTR, LPCSTR, LPCSTR, INT, LPCSTR, WORD, INT); BOOL WINAPI AddDesktopItemW (BOOL, LPCWSTR, LPCWSTR, LPCWSTR, INT, LPCWSTR, WORD, INT); BOOL WINAPI DeleteDesktopItemA (BOOL, LPCSTR); @@ -163,6 +165,7 @@ typedef PROFILEINFOW PROFILEINFO; typedef LPPROFILEINFOW LPPROFILEINFO; /* begin private */ #define CreateUserProfile CreateUserProfileW +#define CreateUserProfileEx CreateUserProfileExW #define AddDesktopItem AddDesktopItemW #define DeleteDesktopItem DeleteDesktopItemW #define CreateGroup CreateGroupW @@ -189,6 +192,7 @@ typedef PROFILEINFOA PROFILEINFO; typedef LPPROFILEINFOA LPPROFILEINFO; /* begin private */ #define CreateUserProfile CreateUserProfileA +#define CreateUserProfileEx CreateUserProfileExA #define AddDesktopItem AddDesktopItemA #define DeleteDesktopItem DeleteDesktopItemA #define CreateGroup CreateGroupA