summaryrefslogtreecommitdiff
path: root/source4/include
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2005-01-31 15:58:54 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:09:25 -0500
commit73a0b6ea476ee19bb814c3257daca7c116d42872 (patch)
tree83179fccc68c992d451011d021c636a248bf386d /source4/include
parenta67ef6c6a11950cbd7dde9476c51d7e2e8b94f9b (diff)
downloadsamba-73a0b6ea476ee19bb814c3257daca7c116d42872.tar.gz
samba-73a0b6ea476ee19bb814c3257daca7c116d42872.tar.bz2
samba-73a0b6ea476ee19bb814c3257daca7c116d42872.zip
r5134: - fix types to always use _t types
- add #include "system/filesys.h" where needed metze (This used to be commit 6bb07a0ed8a4baaeaa1d63bde8ce773364860fd2)
Diffstat (limited to 'source4/include')
-rw-r--r--source4/include/registry.h4
1 files changed, 2 insertions, 2 deletions
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 {