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
printui_private.h
Go to the documentation of this file.
1
/*
2
* Implementation of the Printer User Interface Dialogs: private Header
3
*
4
* Copyright 2007 Detlef Riekenberg
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
#ifndef __WINE_PRINTUI_PRIVATE__
22
#define __WINE_PRINTUI_PRIVATE__
23
24
/* Index for Options with an argument */
25
/* Must be in order with optionsW */
26
typedef
enum
_OPT_INDEX
{
27
OPT_A
= 0,
28
OPT_B
,
29
OPT_C
,
30
OPT_F
,
31
OPT_H
,
32
OPT_J
,
33
OPT_L
,
34
OPT_M
,
35
OPT_N
,
36
OPT_R
,
37
OPT_T
,
38
OPT_V
,
39
OPT_MAX
40
}
OPT_INDEX
;
41
42
/* Index for Flags without an argument */
43
/* Must be in order with flagsW */
44
typedef
enum
_FLAG_INDEX
{
45
FLAG_Q
= 0,
46
FLAG_W
,
47
FLAG_Y
,
48
FLAG_Z
,
49
FLAG_ZZ
,
50
FLAG_MAX
51
}
FLAG_INDEX
;
52
53
54
typedef
struct
tag_context
{
55
HWND
hWnd
;
56
DWORD
nCmdShow
;
57
LPWSTR
*
argv
;
58
LPWSTR
pNextCharW
;
59
int
argc
;
60
int
next_arg
;
61
WCHAR
command
;
62
WCHAR
subcommand
;
63
LPWSTR
options
[
OPT_MAX
];
64
BOOL
flags
[
FLAG_MAX
];
65
}
context_t
;
66
#endif
BOOL
unsigned int BOOL
Definition:
ntddk_ex.h:94
DWORD
unsigned long DWORD
Definition:
ntddk_ex.h:95
flags
GLbitfield flags
Definition:
glext.h:7161
void
Definition:
nsiface.idl:2307
_FLAG_INDEX
_FLAG_INDEX
Definition:
printui_private.h:44
FLAG_Z
@ FLAG_Z
Definition:
printui_private.h:48
FLAG_Y
@ FLAG_Y
Definition:
printui_private.h:47
FLAG_ZZ
@ FLAG_ZZ
Definition:
printui_private.h:49
FLAG_W
@ FLAG_W
Definition:
printui_private.h:46
FLAG_Q
@ FLAG_Q
Definition:
printui_private.h:45
FLAG_MAX
@ FLAG_MAX
Definition:
printui_private.h:50
OPT_INDEX
enum _OPT_INDEX OPT_INDEX
FLAG_INDEX
enum _FLAG_INDEX FLAG_INDEX
context_t
struct tag_context context_t
_OPT_INDEX
_OPT_INDEX
Definition:
printui_private.h:26
OPT_L
@ OPT_L
Definition:
printui_private.h:33
OPT_MAX
@ OPT_MAX
Definition:
printui_private.h:39
OPT_A
@ OPT_A
Definition:
printui_private.h:27
OPT_B
@ OPT_B
Definition:
printui_private.h:28
OPT_F
@ OPT_F
Definition:
printui_private.h:30
OPT_J
@ OPT_J
Definition:
printui_private.h:32
OPT_V
@ OPT_V
Definition:
printui_private.h:38
OPT_H
@ OPT_H
Definition:
printui_private.h:31
OPT_C
@ OPT_C
Definition:
printui_private.h:29
OPT_M
@ OPT_M
Definition:
printui_private.h:34
OPT_T
@ OPT_T
Definition:
printui_private.h:37
OPT_N
@ OPT_N
Definition:
printui_private.h:35
OPT_R
@ OPT_R
Definition:
printui_private.h:36
options
Definition:
btrfslib.c:113
tag_context
Definition:
printui_private.h:54
tag_context::subcommand
WCHAR subcommand
Definition:
printui_private.h:62
tag_context::hWnd
HWND hWnd
Definition:
printui_private.h:55
tag_context::command
WCHAR command
Definition:
printui_private.h:61
tag_context::pNextCharW
LPWSTR pNextCharW
Definition:
printui_private.h:58
tag_context::argc
int argc
Definition:
printui_private.h:59
tag_context::next_arg
int next_arg
Definition:
printui_private.h:60
tag_context::argv
LPWSTR * argv
Definition:
printui_private.h:57
tag_context::nCmdShow
DWORD nCmdShow
Definition:
printui_private.h:56
WCHAR
__wchar_t WCHAR
Definition:
xmlstorage.h:180
LPWSTR
WCHAR * LPWSTR
Definition:
xmlstorage.h:184
win32ss
printing
base
printui
printui_private.h
Generated on Wed Nov 27 2024 06:15:18 for ReactOS by
1.9.6