diff options
author | Michael Adam <obnox@samba.org> | 2011-05-31 00:45:57 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-05-31 01:44:27 +0200 |
commit | 6ef8122cba3566d4ed177612066cbbe1b8684677 (patch) | |
tree | 9a08c962c48010b11d32d48101386360ff9576c7 /source3/libgpo | |
parent | 59950faddc898ea97171d2eac5759314cc1cbeb9 (diff) | |
download | samba-6ef8122cba3566d4ed177612066cbbe1b8684677.tar.gz samba-6ef8122cba3566d4ed177612066cbbe1b8684677.tar.bz2 samba-6ef8122cba3566d4ed177612066cbbe1b8684677.zip |
s3:libgpo/gpo_proto.h: add _LIBGPO_GPO_PROTO_H_ guard
Diffstat (limited to 'source3/libgpo')
-rw-r--r-- | source3/libgpo/gpo_proto.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/libgpo/gpo_proto.h b/source3/libgpo/gpo_proto.h index 504704ec1f..fa2f87338d 100644 --- a/source3/libgpo/gpo_proto.h +++ b/source3/libgpo/gpo_proto.h @@ -18,6 +18,9 @@ * along with this program; if not, see <http://www.gnu.org/licenses/>. */ +#ifndef _LIBGPO_GPO_PROTO_H_ +#define _LIBGPO_GPO_PROTO_H_ + /* The following definitions come from libgpo/gpo_filesync.c */ NTSTATUS gpo_copy_file(TALLOC_CTX *mem_ctx, @@ -94,3 +97,5 @@ WERROR reg_apply_registry_entry(TALLOC_CTX *mem_ctx, struct gp_registry_entry *entry, const struct security_token *token, uint32_t flags); + +#endif /* _LIBGPO_GPO_PROTO_H_ */ |