Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Johnny Cai
wine
Commits
90dc6580
Commit
90dc6580
authored
21 years ago
by
Alexandre Julliard
Browse files
Options
Downloads
Patches
Plain Diff
Make sure all 16-bit system drivers are loaded for 16-bit apps.
parent
fd47c8a6
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/ttydrv/ttydrv_main.c
+0
-3
0 additions, 3 deletions
dlls/ttydrv/ttydrv_main.c
dlls/x11drv/x11drv_main.c
+0
-3
0 additions, 3 deletions
dlls/x11drv/x11drv_main.c
programs/winevdm/winevdm.c
+6
-0
6 additions, 0 deletions
programs/winevdm/winevdm.c
with
6 additions
and
6 deletions
dlls/ttydrv/ttydrv_main.c
+
0
−
3
View file @
90dc6580
...
...
@@ -53,9 +53,6 @@ static void process_attach(void)
#endif
/* WINE_CURSES */
TTYDRV_GDI_Initialize
();
/* load display.dll */
LoadLibrary16
(
"display"
);
}
...
...
This diff is collapsed.
Click to expand it.
dlls/x11drv/x11drv_main.c
+
0
−
3
View file @
90dc6580
...
...
@@ -386,9 +386,6 @@ static void process_attach(void)
/* initialize DGA2 */
X11DRV_XF86DGA2_Init
();
#endif
/* load display.dll */
LoadLibrary16
(
"display"
);
}
...
...
This diff is collapsed.
Click to expand it.
programs/winevdm/winevdm.c
+
6
−
0
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 */
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment