summaryrefslogtreecommitdiff
path: root/libgpo/gpo.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2013-12-18 15:45:58 +0100
committerAndreas Schneider <asn@samba.org>2014-01-07 16:59:38 +0100
commit9a4e007d9000f4f02474394659110dcb9b136d0e (patch)
tree1072edfe97e91e73a7b63a6671d24d69f461eb89 /libgpo/gpo.h
parentc39425f14bd58537aed1079335a62bbac8af7fb6 (diff)
downloadsamba-9a4e007d9000f4f02474394659110dcb9b136d0e.tar.gz
libgpo: remove ads reference from dump calls and make them take const structs.
Guenther Signed-off-by: Günther Deschner <gd@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'libgpo/gpo.h')
-rw-r--r--libgpo/gpo.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/libgpo/gpo.h b/libgpo/gpo.h
index 40ecd34b6e9..91ce006cd09 100644
--- a/libgpo/gpo.h
+++ b/libgpo/gpo.h
@@ -228,15 +228,11 @@ const char *cse_gpo_guid_string_to_name(const char *guid);
const char *cse_gpo_name_to_guid_string(const char *name);
const char *cse_snapin_gpo_guid_string_to_name(const char *guid);
void dump_gp_ext(struct GP_EXT *gp_ext, int debuglevel);
-void dump_gpo(ADS_STRUCT *ads,
- TALLOC_CTX *mem_ctx,
- struct GROUP_POLICY_OBJECT *gpo,
+void dump_gpo(const struct GROUP_POLICY_OBJECT *gpo,
int debuglevel);
-void dump_gpo_list(ADS_STRUCT *ads,
- TALLOC_CTX *mem_ctx,
- struct GROUP_POLICY_OBJECT *gpo_list,
+void dump_gpo_list(const struct GROUP_POLICY_OBJECT *gpo_list,
int debuglevel);
-void dump_gplink(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx, struct GP_LINK *gp_link);
+void dump_gplink(const struct GP_LINK *gp_link);
NTSTATUS gpo_process_a_gpo(TALLOC_CTX *mem_ctx,
const struct security_token *token,
struct registry_key *root_key,