From 73a0b6ea476ee19bb814c3257daca7c116d42872 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 31 Jan 2005 15:58:54 +0000 Subject: r5134: - fix types to always use _t types - add #include "system/filesys.h" where needed metze (This used to be commit 6bb07a0ed8a4baaeaa1d63bde8ce773364860fd2) --- source4/include/registry.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/include') diff --git a/source4/include/registry.h b/source4/include/registry.h index bec68a0dfa..05bcf76ad5 100644 --- a/source4/include/registry.h +++ b/source4/include/registry.h @@ -138,7 +138,7 @@ struct hive_operations { WERROR (*flush_key) (struct registry_key *); /* Value management */ - WERROR (*set_value)(struct registry_key *, const char *name, uint32 type, void *data, int len); + WERROR (*set_value)(struct registry_key *, const char *name, uint32_t type, void *data, int len); WERROR (*del_value)(struct registry_key *, const char *valname); }; @@ -153,7 +153,7 @@ struct registry_hive { * contains zero or more hives */ struct registry_context { void *backend_data; - WERROR (*get_predefined_key) (struct registry_context *, uint32 hkey, struct registry_key **); + WERROR (*get_predefined_key) (struct registry_context *, uint32_t hkey, struct registry_key **); }; struct reg_init_function_entry { -- cgit