Commit 6894af6f authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard

msvideo: Forward MCIWndCreate16 to MCIWndCreateA.

parent 7b11524e
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
244 stub ICSEQCOMPRESSFRAMESTART 244 stub ICSEQCOMPRESSFRAMESTART
245 stub ICSEQCOMPRESSFRAMEEND 245 stub ICSEQCOMPRESSFRAMEEND
246 stub ICSEQCOMPRESSFRAME 246 stub ICSEQCOMPRESSFRAME
250 stub _MCIWNDCREATE 250 cdecl _MCIWndCreate(word word long str) MCIWndCreate16
251 stub _MCIWNDREGISTERCLASS 251 stub _MCIWNDREGISTERCLASS
252 stub GETOPENFILENAMEPREVIEW 252 stub GETOPENFILENAMEPREVIEW
253 stub GETSAVEFILENAMEPREVIEW 253 stub GETSAVEFILENAMEPREVIEW
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
#include "winreg.h" #include "winreg.h"
#include "winuser.h" #include "winuser.h"
#include "wine/winbase16.h" #include "wine/winbase16.h"
#include "wownt32.h"
#include "vfw16.h" #include "vfw16.h"
#include "wine/debug.h" #include "wine/debug.h"
...@@ -973,3 +974,12 @@ BOOL WINAPI VIDEO_LibMain(DWORD fdwReason, HINSTANCE hinstDLL, WORD ds, ...@@ -973,3 +974,12 @@ BOOL WINAPI VIDEO_LibMain(DWORD fdwReason, HINSTANCE hinstDLL, WORD ds,
} }
return TRUE; 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));
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment