ReactOS 0.4.15-dev-7907-g95bf896
regfs.h
Go to the documentation of this file.
1/*
2 * Copyright 2004 Martin Fuchs
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19
20 //
21 // Explorer clone
22 //
23 // regfs.h
24 //
25 // Martin Fuchs, 31.01.2004
26 //
27
28
30struct RegEntry : public Entry
31{
33
34protected:
36
37 virtual bool get_path(PTSTR path, size_t path_count) const;
38 virtual BOOL launch_entry(HWND hwnd, UINT nCmdShow);
39};
40
41
43struct RegDirectory : public RegEntry, public Directory
44{
46
48 {
49 free(_path);
50 _path = NULL;
51 }
52
53 virtual void read_directory(int scan_flags=0);
54 virtual const void* get_next_path_component(const void*) const;
55 virtual Entry* find_entry(const void*);
56
57protected:
59};
60
61
63struct RegistryRoot : public RegEntry, public Directory
64{
66 {
67 }
68
71 {
73 }
74
76 {
77 free(_path);
78 _path = NULL;
79 }
80
81 virtual void read_directory(int scan_flags=0);
82};
#define free
Definition: debug_ros.c:5
#define NULL
Definition: types.h:112
r parent
Definition: btrfs.c:3010
@ ET_REGISTRY
Definition: entries.h:39
unsigned int BOOL
Definition: ntddk_ex.h:94
#define _tcsdup
Definition: tchar.h:625
unsigned int UINT
Definition: ndis.h:50
base for all directory entries
Definition: entries.h:138
void * _path
Definition: entries.h:143
base of all file and directory entries
Definition: entries.h:83
Registry key entry.
Definition: regfs.h:44
HKEY _hKeyRoot
Definition: regfs.h:58
virtual Entry * find_entry(const void *)
Definition: regfs.cpp:200
virtual void read_directory(int scan_flags=0)
Definition: regfs.cpp:34
virtual const void * get_next_path_component(const void *) const
Definition: regfs.cpp:183
~RegDirectory()
Definition: regfs.h:47
Registry entry.
Definition: regfs.h:31
RegEntry(Entry *parent)
Definition: regfs.h:32
RegEntry()
Definition: regfs.h:35
virtual bool get_path(PTSTR path, size_t path_count) const
Definition: regfs.cpp:227
virtual BOOL launch_entry(HWND hwnd, UINT nCmdShow)
Definition: regfs.cpp:232
Registry key entry.
Definition: regfs.h:64
~RegistryRoot()
Definition: regfs.h:75
RegistryRoot()
Definition: regfs.h:65
RegistryRoot(Entry *parent, LPCTSTR path)
Definition: regfs.h:69
virtual void read_directory(int scan_flags=0)
Definition: regfs.cpp:249
_In_ LONG _In_ HWND hwnd
Definition: winddi.h:4023
CHAR * PTSTR
Definition: xmlstorage.h:191
const CHAR * LPCTSTR
Definition: xmlstorage.h:193