summaryrefslogtreecommitdiff
path: root/libgpo/gpext/gpext.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2013-12-18 19:33:28 +0100
committerAndreas Schneider <asn@samba.org>2014-01-07 16:59:38 +0100
commita9cb3031bcba1e4f39c71e4e09508e4eec0e833e (patch)
treee2e3b79a47347fa3ffe3534663f163fdea723e25 /libgpo/gpext/gpext.h
parent19268c5c2654956e2a45c7f8ce27a699e96c930b (diff)
downloadsamba-a9cb3031bcba1e4f39c71e4e09508e4eec0e833e.tar.gz
libgpo: allow to pass down deleted and changed gpo list to CSE plugins.
Guenther Signed-off-by: Günther Deschner <gd@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'libgpo/gpext/gpext.h')
-rw-r--r--libgpo/gpext/gpext.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/libgpo/gpext/gpext.h b/libgpo/gpext/gpext.h
index c8024a25e86..767bd062b91 100644
--- a/libgpo/gpext/gpext.h
+++ b/libgpo/gpext/gpext.h
@@ -65,7 +65,8 @@ struct gp_extension_methods {
uint32_t flags,
struct registry_key *root_key,
const struct security_token *token,
- struct GROUP_POLICY_OBJECT *gpo,
+ struct GROUP_POLICY_OBJECT *deleted_gpo_list,
+ struct GROUP_POLICY_OBJECT *changed_gpo_list,
const char *extension_guid,
const char *snapin_guid);
@@ -108,7 +109,8 @@ NTSTATUS gpext_process_extension(TALLOC_CTX *mem_ctx,
uint32_t flags,
const struct security_token *token,
struct registry_key *root_key,
- struct GROUP_POLICY_OBJECT *gpo,
+ const struct GROUP_POLICY_OBJECT *deleted_gpo_list,
+ const struct GROUP_POLICY_OBJECT *changed_gpo_list,
const char *extension_guid,
const char *snapin_guid);