Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
c5112d9f
Commit
c5112d9f
authored
Jan 19, 2010
by
Paul Vriens
Committed by
Alexandre Julliard
Jan 19, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rasapi32/tests: Fix some test failures on Win9x.
parent
83c422e1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
rasapi.c
dlls/rasapi32/tests/rasapi.c
+2
-1
raserror.h
include/raserror.h
+1
-0
No files found.
dlls/rasapi32/tests/rasapi.c
View file @
c5112d9f
...
...
@@ -55,7 +55,8 @@ static void test_rasenum(void)
/* create the return buffer */
result
=
pRasEnumDevicesA
(
NULL
,
&
bufsize
,
&
cDevices
);
if
(
ERROR_RASMAN_CANNOT_INITIALIZE
==
result
)
{
if
(
ERROR_RASMAN_CANNOT_INITIALIZE
==
result
||
ERROR_STATE_MACHINES_NOT_STARTED
==
result
)
{
win_skip
(
"RAS configuration problem
\n
"
);
return
;
}
...
...
include/raserror.h
View file @
c5112d9f
...
...
@@ -23,6 +23,7 @@
#define ERROR_BUFFER_TOO_SMALL (RASBASE+3)
#define ERROR_BUFFER_INVALID (RASBASE+10)
#define ERROR_INVALID_SIZE (RASBASE+32)
#define ERROR_STATE_MACHINES_NOT_STARTED (RASBASE+95)
#define ERROR_RASMAN_CANNOT_INITIALIZE (RASBASE+111)
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment