ReactOS
0.4.16-dev-1007-g2e85425
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
compat.h
Go to the documentation of this file.
1
#pragma once
2
3
#if defined(_WIN32)
4
5
#ifdef _MSC_VER
6
#define strcasecmp _stricmp
7
#endif
8
9
#include <direct.h>
10
11
#define POPEN _popen
12
#define PCLOSE _pclose
13
#define MKDIR(d) _mkdir(d)
14
#define DEV_NULL "NUL"
15
#define DOS_PATHS
16
#define PATH_CHAR '\\'
17
#define PATH_STR "\\"
18
#define PATHCMP strcasecmp
19
#define CP_CMD "copy /Y "
20
#define DIR_FMT "dir /a:-d /s /b %s > %s"
21
22
#else
/* not defined (_WIN32) */
23
#include <sys/stat.h>
24
25
#define POPEN popen
26
#define PCLOSE pclose
27
#define MKDIR(d) mkdir(d, S_IRWXU|S_IRWXG|S_IROTH|S_IXOTH)
28
#define DEV_NULL "/dev/null"
29
#define UNIX_PATHS
30
#define PATH_CHAR '/'
31
#define PATH_STR "/"
32
#define PATHCMP strcasecmp
33
#define CP_CMD "cp -f "
34
#define DIR_FMT "find %s -type f > %s"
35
36
#endif
/* not defined (_WIN32) */
37
38
#ifndef PATH_MAX
39
#define PATH_MAX 260
40
#endif
41
42
/* EOF */
sdk
tools
log2lines
compat.h
Generated on Fri Apr 18 2025 06:17:03 for ReactOS by
1.9.6