Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
ba41900d
Commit
ba41900d
authored
Apr 03, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Apr 03, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: More informative message on failure to load x11drv.
parent
f875d30e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
3 deletions
+19
-3
driver.c
dlls/user/driver.c
+19
-3
No files found.
dlls/user/driver.c
View file @
ba41900d
...
...
@@ -32,6 +32,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(user);
static
const
USER_DRIVER
null_driver
,
lazy_load_driver
;
const
USER_DRIVER
*
USER_Driver
=
&
lazy_load_driver
;
static
DWORD
driver_load_error
;
/* load the graphics driver */
static
const
USER_DRIVER
*
load_driver
(
void
)
...
...
@@ -62,6 +63,9 @@ static const USER_DRIVER *load_driver(void)
name
=
next
;
}
if
(
!
graphics_driver
)
driver_load_error
=
GetLastError
();
driver
=
HeapAlloc
(
GetProcessHeap
(),
0
,
sizeof
(
*
driver
)
);
memcpy
(
driver
,
&
null_driver
,
sizeof
(
*
driver
)
);
...
...
@@ -305,10 +309,22 @@ static BOOL nulldrv_CreateDesktopWindow( HWND hwnd )
static
BOOL
nulldrv_CreateWindow
(
HWND
hwnd
,
CREATESTRUCTA
*
cs
,
BOOL
unicode
)
{
static
int
warned
;
if
(
warned
++
)
return
FALSE
;
MESSAGE
(
"Application tried to create a window, but no driver could be loaded.
\n
"
);
switch
(
driver_load_error
)
{
case
ERROR_MOD_NOT_FOUND
:
MESSAGE
(
"The X11 driver is missing. Check your build!
\n
"
);
break
;
case
ERROR_DLL_INIT_FAILED
:
MESSAGE
(
"Make sure that your X server is running and that $DISPLAY is set correctly.
\n
"
);
break
;
default:
MESSAGE
(
"Unknown error (%ld).
\n
"
,
driver_load_error
);
}
if
(
!
warned
++
)
MESSAGE
(
"Application tries to create a window, but no driver could be loaded.
\n
"
"Make sure that your X server is running and that $DISPLAY is set correctly.
\n
"
);
return
FALSE
;
}
...
...
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