s3:registry: move prototypes from reg_init_basic.c to their own header.
[Samba/gebeck_regimport.git] / source3 / registry / reg_init_smbconf.c
blobe2024df8b52cfd8404006d4f4069d37c9656f8a2
1 /*
2 * Unix SMB/CIFS implementation.
3 * Registry helper routines
4 * Copyright (C) Michael Adam 2007
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 3 of the License, or (at your option)
9 * any later version.
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "includes.h"
21 #include "registry.h"
22 #include "reg_cachehook.h"
23 #include "reg_backend_db.h"
24 #include "reg_init_basic.h"
26 #undef DBGC_CLASS
27 #define DBGC_CLASS DBGC_REGISTRY
29 extern struct registry_ops smbconf_reg_ops;
32 * init the smbconf portion of the registry.
33 * for use in places where not the whole registry is needed,
34 * e.g. utils/net_conf.c and loadparm.c
36 WERROR registry_init_smbconf(const char *keyname)
38 WERROR werr;
40 DEBUG(10, ("registry_init_smbconf called\n"));
42 if (keyname == NULL) {
43 DEBUG(10, ("registry_init_smbconf: defaulting to key '%s'\n",
44 KEY_SMBCONF));
45 keyname = KEY_SMBCONF;
48 werr = registry_init_common();
49 if (!W_ERROR_IS_OK(werr)) {
50 goto done;
53 werr = init_registry_key(keyname);
54 if (!W_ERROR_IS_OK(werr)) {
55 DEBUG(1, ("Failed to initialize registry key '%s': %s\n",
56 keyname, win_errstr(werr)));
57 goto done;
60 werr = reghook_cache_add(keyname, &smbconf_reg_ops);
61 if (!W_ERROR_IS_OK(werr)) {
62 DEBUG(1, ("Failed to add smbconf reghooks to reghook cache: "
63 "%s\n", win_errstr(werr)));
64 goto done;
67 done:
68 regdb_close();
69 return werr;