ReactOS
0.4.16-dev-297-gc569aee
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
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
_
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
options.h
Go to the documentation of this file.
1
/*
2
* ReactOS log2lines
3
* Written by Jan Roeloffzen
4
*
5
* - Option parsing
6
*/
7
8
#pragma once
9
10
extern
char
*
optchars
;
11
extern
int
opt_buffered
;
// -b
12
extern
int
opt_help
;
// -h
13
extern
int
opt_force
;
// -f
14
extern
int
opt_exit
;
// -e
15
extern
int
opt_verbose
;
// -v
16
extern
int
opt_console
;
// -c
17
extern
int
opt_mark
;
// -m
18
extern
int
opt_Mark
;
// -M
19
extern
char
*
opt_Pipe
;
// -P
20
extern
int
opt_quit
;
// -q (cli only)
21
extern
int
opt_cli
;
// (cli internal)
22
extern
int
opt_raw
;
// -r
23
extern
int
opt_stats
;
// -s
24
extern
int
opt_Source
;
// -S <opt_Source>[+<opt_SrcPlus>][,<sources_path>]
25
extern
int
opt_SrcPlus
;
// -S <opt_Source>[+<opt_SrcPlus>][,<sources_path>]
26
extern
int
opt_twice
;
// -t
27
extern
int
opt_Twice
;
// -T
28
extern
int
opt_undo
;
// -u
29
extern
int
opt_redo
;
// -U
30
extern
char
opt_dir
[];
// -d <opt_dir>
31
extern
char
opt_logFile
[];
// -l <opt_logFile>
32
extern
char
*
opt_mod
;
// mod for opt_logFile
33
extern
char
opt_7z
[];
// -z <opt_7z>
34
extern
char
opt_scanned
[];
// all scanned options
35
36
extern
char
opt_SourcesPath
[];
//sources path
37
38
int
optionInit
(
int
argc
,
const
char
**
argv
);
39
int
optionParse
(
int
argc
,
const
char
**
argv
);
40
41
/* EOF */
argc
static int argc
Definition:
ServiceArgs.c:12
argv
#define argv
Definition:
mplay32.c:18
opt_undo
int opt_undo
Definition:
options.c:38
opt_scanned
char opt_scanned[]
Definition:
options.c:44
opt_cli
int opt_cli
Definition:
options.c:31
opt_Pipe
char * opt_Pipe
Definition:
options.c:29
opt_help
int opt_help
Definition:
options.c:22
opt_mod
char * opt_mod
Definition:
options.c:42
opt_redo
int opt_redo
Definition:
options.c:39
opt_SrcPlus
int opt_SrcPlus
Definition:
options.c:35
opt_raw
int opt_raw
Definition:
options.c:32
opt_verbose
int opt_verbose
Definition:
options.c:25
optchars
char * optchars
Definition:
options.c:20
opt_logFile
char opt_logFile[]
Definition:
options.c:41
opt_dir
char opt_dir[]
Definition:
options.c:40
optionParse
int optionParse(int argc, const char **argv)
Definition:
options.c:112
opt_force
int opt_force
Definition:
options.c:23
opt_quit
int opt_quit
Definition:
options.c:30
opt_SourcesPath
char opt_SourcesPath[]
Definition:
options.c:45
opt_mark
int opt_mark
Definition:
options.c:27
opt_Mark
int opt_Mark
Definition:
options.c:28
opt_twice
int opt_twice
Definition:
options.c:36
optionInit
int optionInit(int argc, const char **argv)
Definition:
options.c:50
opt_console
int opt_console
Definition:
options.c:26
opt_stats
int opt_stats
Definition:
options.c:33
opt_buffered
int opt_buffered
Definition:
options.c:21
opt_exit
int opt_exit
Definition:
options.c:24
opt_Source
int opt_Source
Definition:
options.c:34
opt_Twice
int opt_Twice
Definition:
options.c:37
opt_7z
char opt_7z[]
Definition:
options.c:43
sdk
tools
log2lines
options.h
Generated on Wed Nov 27 2024 06:14:25 for ReactOS by
1.9.6