ReactOS
0.4.16-dev-937-g7afcd2a
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
cleanmgr.h
Go to the documentation of this file.
1
/*
2
* PROJECT: ReactOS Disk Cleanup
3
* LICENSE: MIT (https://spdx.org/licenses/MIT)
4
* PURPOSE: Main header file
5
* COPYRIGHT: Copyright 2023-2025 Mark Jansen <mark.jansen@reactos.org>
6
*/
7
8
#pragma once
9
10
#ifndef STRICT
11
#define STRICT
12
#endif
13
14
#define _ATL_APARTMENT_THREADED
15
#define _ATL_NO_AUTOMATIC_NAMESPACE
16
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS
// some CString constructors will be explicit
17
#define ATL_NO_ASSERT_ON_DESTROY_NONEXISTENT_WINDOW
18
19
#define _FORCENAMELESSUNION
20
21
#include <
ndk/rtlfuncs.h
>
22
#include <
windef.h
>
23
#include <
winbase.h
>
24
#include <
shlobj.h
>
25
#include <
shlwapi.h
>
26
27
28
#include <atlbase.h>
29
#include <atlcom.h>
30
#include <
atlstr.h
>
31
#include <
strsafe.h
>
32
#include <emptyvc.h>
33
#include <
atlcoll.h
>
34
35
36
using namespace
ATL
;
37
38
#define NDEBUG
39
#include <
reactos/debug.h
>
40
#include <
reactos/shellutils.h
>
41
#include <
ui/rosdlgs.h
>
42
43
44
template
<
class
T>
class
CLocalPtr
45
:
public
CHeapPtr
<T, CLocalAllocator>
46
{
47
public
:
48
CLocalPtr
()
throw
()
49
{
50
}
51
52
explicit
CLocalPtr
(
_In_
T*
pData
)
throw
() :
53
CHeapPtr<T, CLocalAllocator>
(
pData
)
54
{
55
}
56
};
57
58
#include "
resource.h
"
59
#include "
CProgressDlg.hpp
"
60
#include "
CCleanupHandler.hpp
"
61
#include "
CCleanupHandlerList.hpp
"
62
#include "
CEmptyVolumeCacheCallBack.hpp
"
63
64
// CSelectDriveDlg.cpp
65
void
66
SelectDrive
(
WCHAR
&
Drive
);
CCleanupHandlerList.hpp
CCleanupHandler.hpp
CEmptyVolumeCacheCallBack.hpp
CProgressDlg.hpp
atlcoll.h
atlstr.h
Drive
PWCHAR Drive
Definition:
chkdsk.c:73
CHeapPtr
Definition:
atlalloc.h:98
CLocalPtr
Definition:
cleanmgr.h:46
CLocalPtr::CLocalPtr
CLocalPtr()
Definition:
cleanmgr.h:48
CLocalPtr::CLocalPtr
CLocalPtr(_In_ T *pData)
Definition:
cleanmgr.h:52
SelectDrive
void SelectDrive(WCHAR &Drive)
Definition:
CSelectDriveDlg.cpp:73
throw
result_buffer_count char *const _In_ int const _In_ bool const _In_ unsigned const _In_ STRFLT const _In_ bool const _Inout_ __crt_cached_ptd_host &ptd throw()
Definition:
cvt.cpp:119
ATL
Definition:
rosdlgs.h:6
rtlfuncs.h
_In_
#define _In_
Definition:
no_sal2.h:158
rosdlgs.h
debug.h
shellutils.h
shlobj.h
shlwapi.h
strsafe.h
pData
TW_UINT32 TW_UINT16 TW_UINT16 TW_MEMREF pData
Definition:
twain.h:1830
resource.h
winbase.h
windef.h
WCHAR
__wchar_t WCHAR
Definition:
xmlstorage.h:180
base
applications
cleanmgr
cleanmgr
cleanmgr.h
Generated on Wed Apr 2 2025 06:02:26 for ReactOS by
1.9.6