2 * Unix SMB/CIFS implementation.
3 * Virtual Windows Registry Layer (utility functions)
4 * Copyright (C) Gerald Carter 2002-2005
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 /* Implementation of registry frontend view functions. */
26 #define DBGC_CLASS DBGC_RPC_SRV
28 /***********************************************************************
29 Utility function for splitting the base path of a registry path off
30 by setting base and new_path to the apprapriate offsets withing the
33 WARNING!! Does modify the original string!
34 ***********************************************************************/
36 BOOL
reg_split_path( char *path
, char **base
, char **new_path
)
40 *new_path
= *base
= NULL
;
47 p
= strchr( path
, '\\' );
58 /***********************************************************************
59 Utility function for splitting the base path of a registry path off
60 by setting base and new_path to the appropriate offsets withing the
63 WARNING!! Does modify the original string!
64 ***********************************************************************/
66 BOOL
reg_split_key( char *path
, char **base
, char **key
)
77 p
= strrchr( path
, '\\' );
88 /**********************************************************************
89 The full path to the registry key is used as database after the
90 \'s are converted to /'s. Key string is also normalized to UPPER
92 **********************************************************************/
94 void normalize_reg_path( pstring keyname
)
96 pstring_sub( keyname
, "\\", "/" );
97 strupper_m( keyname
);
100 /**********************************************************************
101 move to next non-delimter character
102 *********************************************************************/
104 char* reg_remaining_path( const char *key
)
106 static pstring new_path
;
112 pstrcpy( new_path
, key
);
113 /* normalize_reg_path( new_path ); */
115 if ( !(p
= strchr( new_path
, '\\' )) )
117 if ( !(p
= strchr( new_path
, '/' )) )