s3:registry: extract reg_perfcount prototypes into header of their own.
[vlendec/samba-autobuild/.git] / source3 / include / registry.h
1 #ifndef _REGISTRY_H
2 #define _REGISTRY_H
3
4 #include "reg_objects.h"
5
6 /* The following definitions come from registry/reg_api.c  */
7
8 WERROR reg_openhive(TALLOC_CTX *mem_ctx, const char *hive,
9                     uint32 desired_access,
10                     const struct nt_user_token *token,
11                     struct registry_key **pkey);
12 WERROR reg_openkey(TALLOC_CTX *mem_ctx, struct registry_key *parent,
13                    const char *name, uint32 desired_access,
14                    struct registry_key **pkey);
15 WERROR reg_enumkey(TALLOC_CTX *mem_ctx, struct registry_key *key,
16                    uint32 idx, char **name, NTTIME *last_write_time);
17 WERROR reg_enumvalue(TALLOC_CTX *mem_ctx, struct registry_key *key,
18                      uint32 idx, char **pname, struct registry_value **pval);
19 WERROR reg_queryvalue(TALLOC_CTX *mem_ctx, struct registry_key *key,
20                       const char *name, struct registry_value **pval);
21 WERROR reg_queryinfokey(struct registry_key *key, uint32_t *num_subkeys,
22                         uint32_t *max_subkeylen, uint32_t *max_subkeysize,
23                         uint32_t *num_values, uint32_t *max_valnamelen,
24                         uint32_t *max_valbufsize, uint32_t *secdescsize,
25                         NTTIME *last_changed_time);
26 WERROR reg_createkey(TALLOC_CTX *ctx, struct registry_key *parent,
27                      const char *subkeypath, uint32 desired_access,
28                      struct registry_key **pkey,
29                      enum winreg_CreateAction *paction);
30 WERROR reg_deletekey(struct registry_key *parent, const char *path);
31 WERROR reg_setvalue(struct registry_key *key, const char *name,
32                     const struct registry_value *val);
33 WERROR reg_deletevalue(struct registry_key *key, const char *name);
34 WERROR reg_getkeysecurity(TALLOC_CTX *mem_ctx, struct registry_key *key,
35                           struct security_descriptor **psecdesc);
36 WERROR reg_setkeysecurity(struct registry_key *key,
37                           struct security_descriptor *psecdesc);
38 WERROR reg_getversion(uint32_t *version);
39 WERROR reg_restorekey(struct registry_key *key, const char *fname);
40 WERROR reg_savekey(struct registry_key *key, const char *fname);
41 WERROR reg_deleteallvalues(struct registry_key *key);
42 WERROR reg_open_path(TALLOC_CTX *mem_ctx, const char *orig_path,
43                      uint32 desired_access, const struct nt_user_token *token,
44                      struct registry_key **pkey);
45 WERROR reg_deletekey_recursive(TALLOC_CTX *ctx,
46                                struct registry_key *parent,
47                                const char *path);
48 WERROR reg_deletesubkeys_recursive(TALLOC_CTX *ctx,
49                                    struct registry_key *parent,
50                                    const char *path);
51 WERROR reg_create_path(TALLOC_CTX *mem_ctx, const char *orig_path,
52                        uint32 desired_access,
53                        const struct nt_user_token *token,
54                        enum winreg_CreateAction *paction,
55                        struct registry_key **pkey);
56 WERROR reg_delete_path(const struct nt_user_token *token,
57                        const char *orig_path);
58
59 /* The following definitions come from registry/reg_eventlog.c  */
60
61 bool eventlog_init_keys(void);
62 bool eventlog_add_source( const char *eventlog, const char *sourcename,
63                           const char *messagefile );
64
65 /* The following definitions come from registry/reg_init_basic.c  */
66
67 WERROR registry_init_common(void);
68 WERROR registry_init_basic(void);
69
70 /* The following definitions come from registry/reg_init_full.c  */
71
72 WERROR registry_init_full(void);
73
74 /* The following definitions come from registry/reg_init_smbconf.c  */
75
76 NTSTATUS registry_create_admin_token(TALLOC_CTX *mem_ctx,
77                                      NT_USER_TOKEN **ptoken);
78 WERROR registry_init_smbconf(const char *keyname);
79
80 /* The following definitions come from lib/util_reg_api.c  */
81
82 WERROR registry_pull_value(TALLOC_CTX *mem_ctx,
83                            struct registry_value **pvalue,
84                            enum winreg_Type type, uint8 *data,
85                            uint32 size, uint32 length);
86 WERROR registry_push_value(TALLOC_CTX *mem_ctx,
87                            const struct registry_value *value,
88                            DATA_BLOB *presult);
89
90 #endif /* _REGISTRY_H */