[USERENV]
[reactos.git] / reactos / dll / win32 / userenv / gpolicy.c
index 8302ce8..55a5f09 100644 (file)
@@ -29,7 +29,6 @@
 #define NDEBUG
 #include <debug.h>
 
-
 typedef struct _GP_NOTIFY
 {
     struct _GP_NOTIFY *Next;
@@ -573,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;
+}