mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 20:56:26 +00:00
[USERENV]
- Add proper stubs for GetAppliedGPOList[A,W] CORE-8636 svn path=/trunk/; revision=64767
This commit is contained in:
parent
84ff0ecbd0
commit
cac835f291
2 changed files with 30 additions and 2 deletions
|
@ -572,3 +572,31 @@ WaitForMachinePolicyForegroundProcessing(VOID)
|
||||||
|
|
||||||
return Ret;
|
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;
|
||||||
|
}
|
||||||
|
|
|
@ -16,8 +16,8 @@
|
||||||
188 stub GenerateRsopPolicy #stdcall GenerateRsopPolicy(48)
|
188 stub GenerateRsopPolicy #stdcall GenerateRsopPolicy(48)
|
||||||
189 stdcall GetAllUsersProfileDirectoryA(str ptr)
|
189 stdcall GetAllUsersProfileDirectoryA(str ptr)
|
||||||
190 stdcall GetAllUsersProfileDirectoryW(wstr ptr)
|
190 stdcall GetAllUsersProfileDirectoryW(wstr ptr)
|
||||||
191 stub GetAppliedGPOListA #stdcall GetAppliedGPOListA(long str ptr ptr ptr)
|
191 stdcall GetAppliedGPOListA(long str ptr ptr ptr)
|
||||||
192 stub GetAppliedGPOListW #stdcall GetAppliedGPOListW(long wstr ptr ptr ptr)
|
192 stdcall GetAppliedGPOListW(long wstr ptr ptr ptr)
|
||||||
193 stdcall GetDefaultUserProfileDirectoryA(str ptr)
|
193 stdcall GetDefaultUserProfileDirectoryA(str ptr)
|
||||||
194 stdcall GetDefaultUserProfileDirectoryW(wstr ptr)
|
194 stdcall GetDefaultUserProfileDirectoryW(wstr ptr)
|
||||||
195 stub GetGPOListA #stdcall GetGPOListA(ptr str str str long ptr)
|
195 stub GetGPOListA #stdcall GetGPOListA(ptr str str str long ptr)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue