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
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
Alexey Alyaev
wine
Commits
6894af6f
Commit
6894af6f
authored
14 years ago
by
Stefan Leichter
Committed by
Alexandre Julliard
14 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msvideo: Forward MCIWndCreate16 to MCIWndCreateA.
parent
7b11524e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/msvideo.dll16/msvideo.dll16.spec
+1
-1
1 addition, 1 deletion
dlls/msvideo.dll16/msvideo.dll16.spec
dlls/msvideo.dll16/msvideo16.c
+10
-0
10 additions, 0 deletions
dlls/msvideo.dll16/msvideo16.c
with
11 additions
and
1 deletion
dlls/msvideo.dll16/msvideo.dll16.spec
+
1
−
1
View file @
6894af6f
...
...
@@ -62,7 +62,7 @@
244 stub ICSEQCOMPRESSFRAMESTART
245 stub ICSEQCOMPRESSFRAMEEND
246 stub ICSEQCOMPRESSFRAME
250
stub _MCIWNDCREATE
250
cdecl _MCIWndCreate(word word long str) MCIWndCreate16
251 stub _MCIWNDREGISTERCLASS
252 stub GETOPENFILENAMEPREVIEW
253 stub GETSAVEFILENAMEPREVIEW
This diff is collapsed.
Click to expand it.
dlls/msvideo.dll16/msvideo16.c
+
10
−
0
View file @
6894af6f
...
...
@@ -30,6 +30,7 @@
#include
"winreg.h"
#include
"winuser.h"
#include
"wine/winbase16.h"
#include
"wownt32.h"
#include
"vfw16.h"
#include
"wine/debug.h"
...
...
@@ -973,3 +974,12 @@ BOOL WINAPI VIDEO_LibMain(DWORD fdwReason, HINSTANCE hinstDLL, WORD ds,
}
return
TRUE
;
}
/***********************************************************************
* MCIWndCreate(MSVIDEO.250)
*/
HWND16
CDECL
MCIWndCreate16
(
HWND16
hwnd
,
HINSTANCE16
hinst16
,
DWORD
style
,
LPSTR
file
)
{
return
HWND_16
(
MCIWndCreateA
(
HWND_32
(
hwnd
),
0
,
style
,
file
));
}
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