[USERENV]

- Add proper stubs for GetAppliedGPOList[A,W]
CORE-8636

svn path=/trunk/; revision=64767
This commit is contained in:
Jérôme Gardou 2014-10-16 20:15:13 +00:00
parent 84ff0ecbd0
commit cac835f291
2 changed files with 30 additions and 2 deletions

View file

@ -572,3 +572,31 @@ WaitForMachinePolicyForegroundProcessing(VOID)
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;
}

View file

@ -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)