Author: jgardou
Date: Thu Oct 16 20:15:13 2014
New Revision: 64767
URL:
http://svn.reactos.org/svn/reactos?rev=64767&view=rev
Log:
[USERENV]
- Add proper stubs for GetAppliedGPOList[A,W]
CORE-8636
Modified:
trunk/reactos/dll/win32/userenv/gpolicy.c
trunk/reactos/dll/win32/userenv/userenv.spec
Modified: trunk/reactos/dll/win32/userenv/gpolicy.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/userenv/gpolicy.…
==============================================================================
--- trunk/reactos/dll/win32/userenv/gpolicy.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/userenv/gpolicy.c [iso-8859-1] Thu Oct 16 20:15:13 2014
@@ -572,3 +572,31 @@
return Ret;
}
+
+DWORD
+WINAPI
+GetAppliedGPOListA(
+ _In_ DWORD dwFlags,
+ _In_ LPCSTR pMachineName,
+ _In_ PSID pSidUser,
+ _In_ GUID *pGuidExtension,
+ _Out_ PGROUP_POLICY_OBJECTA *ppGPOList
+)
+{
+ DPRINT1("GetAppliedGPOListA is UNIMPLEMENTED!\n");
+ return ERROR_CALL_NOT_IMPLEMENTED;
+}
+
+DWORD
+WINAPI
+GetAppliedGPOListW(
+ _In_ DWORD dwFlags,
+ _In_ LPCWSTR pMachineName,
+ _In_ PSID pSidUser,
+ _In_ GUID *pGuidExtension,
+ _Out_ PGROUP_POLICY_OBJECTW *ppGPOList
+)
+{
+ DPRINT1("GetAppliedGPOListW is UNIMPLEMENTED!\n");
+ return ERROR_CALL_NOT_IMPLEMENTED;
+}
Modified: trunk/reactos/dll/win32/userenv/userenv.spec
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/userenv/userenv.…
==============================================================================
--- trunk/reactos/dll/win32/userenv/userenv.spec [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/userenv/userenv.spec [iso-8859-1] Thu Oct 16 20:15:13 2014
@@ -16,8 +16,8 @@
188 stub GenerateRsopPolicy #stdcall
GenerateRsopPolicy(48)
189 stdcall GetAllUsersProfileDirectoryA(str ptr)
190 stdcall GetAllUsersProfileDirectoryW(wstr ptr)
-191 stub GetAppliedGPOListA #stdcall
GetAppliedGPOListA(long str ptr ptr ptr)
-192 stub GetAppliedGPOListW #stdcall
GetAppliedGPOListW(long wstr ptr ptr ptr)
+191 stdcall GetAppliedGPOListA(long str ptr ptr ptr)
+192 stdcall GetAppliedGPOListW(long wstr ptr ptr ptr)
193 stdcall GetDefaultUserProfileDirectoryA(str ptr)
194 stdcall GetDefaultUserProfileDirectoryW(wstr ptr)
195 stub GetGPOListA #stdcall
GetGPOListA(ptr str str str long ptr)