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
6894af6f
Commit
6894af6f
authored
Aug 23, 2010
by
Stefan Leichter
Committed by
Alexandre Julliard
Aug 24, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvideo: Forward MCIWndCreate16 to MCIWndCreateA.
parent
7b11524e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
msvideo.dll16.spec
dlls/msvideo.dll16/msvideo.dll16.spec
+1
-1
msvideo16.c
dlls/msvideo.dll16/msvideo16.c
+10
-0
No files found.
dlls/msvideo.dll16/msvideo.dll16.spec
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
dlls/msvideo.dll16/msvideo16.c
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
));
}
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