ReactOS 0.4.15-dev-7842-g558ab78
winfs.h
Go to the documentation of this file.
1/*
2 * Copyright 2003, 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 // winfs.h
24 //
25 // Martin Fuchs, 23.07.2003
26 //
27
28/* Enable this when the BackupRead API is implemented */
29// #define BACKUP_READ_IMPLEMENTED
30
32struct WinEntry : public Entry
33{
35
36protected:
38
39 virtual bool get_path(PTSTR path, size_t path_count) const;
40 virtual ShellPath create_absolute_pidl() const;
41};
42
43
45struct WinDirectory : public WinEntry, public Directory
46{
48 : WinEntry()
49 {
50 _path = _tcsdup(root_path);
51 }
52
55 {
57 }
58
60 {
61 free(_path);
62 _path = NULL;
63 }
64
65 virtual void read_directory(int scan_flags=0);
66 virtual const void* get_next_path_component(const void*) const;
67 virtual Entry* find_entry(const void*);
68};
69
70#ifdef BACKUP_READ_IMPLEMENTED
71extern int ScanNTFSStreams(Entry* entry, HANDLE hFile);
72#endif
#define free
Definition: debug_ros.c:5
#define NULL
Definition: types.h:112
r parent
Definition: btrfs.c:3010
@ ET_WINDOWS
Definition: entries.h:32
#define _tcsdup
Definition: tchar.h:625
uint32_t entry
Definition: isohybrid.c:63
_In_ HANDLE hFile
Definition: mswsock.h:90
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
wrapper class for item ID lists
Definition: shellclasses.h:652
Windows file system directory-entry.
Definition: winfs.h:46
virtual const void * get_next_path_component(const void *) const
Definition: winfs.cpp:195
~WinDirectory()
Definition: winfs.h:59
virtual Entry * find_entry(const void *)
Definition: winfs.cpp:212
virtual void read_directory(int scan_flags=0)
Definition: winfs.cpp:123
WinDirectory(Entry *parent, LPCTSTR path)
Definition: winfs.h:53
WinDirectory(LPCTSTR root_path)
Definition: winfs.h:47
Windows file system file-entry.
Definition: winfs.h:33
WinEntry(Entry *parent)
Definition: winfs.h:34
virtual bool get_path(PTSTR path, size_t path_count) const
Definition: winfs.cpp:239
WinEntry()
Definition: winfs.h:37
virtual ShellPath create_absolute_pidl() const
Definition: winfs.cpp:244
CHAR * PTSTR
Definition: xmlstorage.h:191
const CHAR * LPCTSTR
Definition: xmlstorage.h:193