ReactOS
0.4.16-dev-814-g656a5dc
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
xcopy.h
Go to the documentation of this file.
1
/*
2
* XCOPY - Wine-compatible xcopy program
3
*
4
* Copyright (C) 2007 J. Edmeades
5
*
6
* This library is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU Lesser General Public
8
* License as published by the Free Software Foundation; either
9
* version 2.1 of the License, or (at your option) any later version.
10
*
11
* This library 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 GNU
14
* Lesser General Public License for more details.
15
*
16
* You should have received a copy of the GNU Lesser General Public
17
* License along with this library; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19
*/
20
21
#pragma once
22
23
#include <
windef.h
>
24
25
/* Local #defines */
26
#define RC_OK 0
27
#define RC_NOFILES 1
28
#define RC_CTRLC 2
29
#define RC_INITERROR 4
30
#define RC_WRITEERROR 5
31
#define RC_HELP 6
32
33
#define OPT_ASSUMEDIR 0x00000001
34
#define OPT_RECURSIVE 0x00000002
35
#define OPT_EMPTYDIR 0x00000004
36
#define OPT_QUIET 0x00000008
37
#define OPT_FULL 0x00000010
38
#define OPT_SIMULATE 0x00000020
39
#define OPT_PAUSE 0x00000040
40
#define OPT_NOCOPY 0x00000080
41
#define OPT_NOPROMPT 0x00000100
42
#define OPT_SHORTNAME 0x00000200
43
#define OPT_MUSTEXIST 0x00000400
44
#define OPT_REPLACEREAD 0x00000800
45
#define OPT_COPYHIDSYS 0x00001000
46
#define OPT_IGNOREERRORS 0x00002000
47
#define OPT_SRCPROMPT 0x00004000
48
#define OPT_ARCHIVEONLY 0x00008000
49
#define OPT_REMOVEARCH 0x00010000
50
#define OPT_EXCLUDELIST 0x00020000
51
#define OPT_DATERANGE 0x00040000
52
#define OPT_DATENEWER 0x00080000
53
#define OPT_KEEPATTRS 0x00100000
54
55
#define MAXSTRING 8192
56
57
/* Translation ids */
58
#define STRING_INVPARMS 101
59
#define STRING_INVPARM 102
60
#define STRING_PAUSE 103
61
#define STRING_SIMCOPY 104
62
#define STRING_COPY 105
63
#define STRING_QISDIR 106
64
#define STRING_SRCPROMPT 107
65
#define STRING_OVERWRITE 108
66
#define STRING_COPYFAIL 109
67
#define STRING_OPENFAIL 110
68
#define STRING_READFAIL 111
69
#define STRING_YES_CHAR 112
70
#define STRING_NO_CHAR 113
71
#define STRING_ALL_CHAR 114
72
#define STRING_FILE_CHAR 115
73
#define STRING_DIR_CHAR 116
74
#define STRING_HELP 117
windef.h
base
applications
cmdutils
xcopy
xcopy.h
Generated on Thu Mar 13 2025 06:02:22 for ReactOS by
1.9.6