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
90dc6580
Commit
90dc6580
authored
Sep 27, 2003
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure all 16-bit system drivers are loaded for 16-bit apps.
parent
fd47c8a6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
ttydrv_main.c
dlls/ttydrv/ttydrv_main.c
+0
-3
x11drv_main.c
dlls/x11drv/x11drv_main.c
+0
-3
winevdm.c
programs/winevdm/winevdm.c
+6
-0
No files found.
dlls/ttydrv/ttydrv_main.c
View file @
90dc6580
...
...
@@ -53,9 +53,6 @@ static void process_attach(void)
#endif
/* WINE_CURSES */
TTYDRV_GDI_Initialize
();
/* load display.dll */
LoadLibrary16
(
"display"
);
}
...
...
dlls/x11drv/x11drv_main.c
View file @
90dc6580
...
...
@@ -386,9 +386,6 @@ static void process_attach(void)
/* initialize DGA2 */
X11DRV_XF86DGA2_Init
();
#endif
/* load display.dll */
LoadLibrary16
(
"display"
);
}
...
...
programs/winevdm/winevdm.c
View file @
90dc6580
...
...
@@ -209,6 +209,12 @@ int main( int argc, char *argv[] )
/* some programs assume mmsystem is always present */
LoadLibrary16
(
"mmsystem.dll"
);
/* make sure system drivers are loaded */
LoadLibrary16
(
"comm.drv"
);
LoadLibrary16
(
"display.drv"
);
LoadLibrary16
(
"keyboard.drv"
);
LoadLibrary16
(
"mouse.drv"
);
if
((
instance
=
LoadModule16
(
appname
,
&
params
))
<
32
)
{
if
(
instance
==
11
)
/* try DOS format */
...
...
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