ReactOS
0.4.16-dev-1025-gd3456f5
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
CWineTest.h
Go to the documentation of this file.
1
/*
2
* PROJECT: ReactOS Automatic Testing Utility
3
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
4
* PURPOSE: Class implementing functions for handling Wine tests
5
* COPYRIGHT: Copyright 2009 Colin Finck (colin@reactos.org)
6
*/
7
8
class
CWineTest
:
public
CTest
9
{
10
private
:
11
HANDLE
m_hFind
;
12
PCHAR
m_ListBuffer
;
13
string
m_CurrentTest
;
14
wstring
m_CurrentFile
;
15
wstring
m_CurrentListCommand
;
16
wstring
m_TestPath
;
17
18
bool
GetNextFile
();
19
bool
GetNextTest
();
20
CTestInfo
*
GetNextTestInfo
();
21
DWORD
DoListCommand
();
22
void
RunTest
(
CTestInfo
* TestInfo);
23
24
public
:
25
CWineTest
();
26
~CWineTest
();
27
28
void
Run
();
29
};
RunTest
static KSTART_ROUTINE RunTest
Definition:
NpfsConnect.c:238
CTestInfo
Definition:
CTestInfo.h:9
CTest
Definition:
CTest.h:9
CWineTest
Definition:
CWineTest.h:9
CWineTest::GetNextFile
bool GetNextFile()
Definition:
CWineTest.cpp:61
CWineTest::m_ListBuffer
PCHAR m_ListBuffer
Definition:
CWineTest.h:12
CWineTest::GetNextTest
bool GetNextTest()
Definition:
CWineTest.cpp:194
CWineTest::m_TestPath
wstring m_TestPath
Definition:
CWineTest.h:16
CWineTest::Run
void Run()
Definition:
CWineTest.cpp:397
CWineTest::m_CurrentTest
string m_CurrentTest
Definition:
CWineTest.h:13
CWineTest::GetNextTestInfo
CTestInfo * GetNextTestInfo()
Definition:
CWineTest.cpp:245
CWineTest::m_CurrentListCommand
wstring m_CurrentListCommand
Definition:
CWineTest.h:15
CWineTest::DoListCommand
DWORD DoListCommand()
Definition:
CWineTest.cpp:144
CWineTest::CWineTest
CWineTest()
Definition:
CWineTest.cpp:20
CWineTest::~CWineTest
~CWineTest()
Definition:
CWineTest.cpp:45
CWineTest::m_hFind
HANDLE m_hFind
Definition:
CWineTest.h:11
CWineTest::m_CurrentFile
wstring m_CurrentFile
Definition:
CWineTest.h:14
DWORD
unsigned long DWORD
Definition:
ntddk_ex.h:95
void
Definition:
nsiface.idl:2307
wstring
__crt_unique_heap_ptr< wchar_t > const wstring(_malloc_crt_t(wchar_t, maxsize))
PCHAR
char * PCHAR
Definition:
typedefs.h:51
modules
rostests
rosautotest
CWineTest.h
Generated on Wed Apr 23 2025 06:09:02 for ReactOS by
1.9.6