Skip to content
Snippets Groups Projects
Commit 7f01aa87 authored by François Gouget's avatar François Gouget Committed by Alexandre Julliard
Browse files

Merged MCIWndCreate and MCIWndCreateA.

parent 2cfb02a5
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ import winmm.dll
41 stub ICSeqCompressFrame
42 stub ICSeqCompressFrameEnd
43 stub ICSeqCompressFrameStart
44 cdecl MCIWndCreate (long long long ptr) MCIWndCreate
44 cdecl MCIWndCreate (long long long str) MCIWndCreateA
45 cdecl MCIWndCreateA (long long long str) MCIWndCreateA
46 cdecl MCIWndCreateW (long long long wstr) MCIWndCreateW
47 stub MCIWndRegisterClass
......
......@@ -472,16 +472,7 @@ UINT VFWAPI DrawDibRealize(HDRAWDIB hdd, HDC hdc, BOOL fBackground) {
}
/***********************************************************************
* MCIWndCreate [MSVFW.44]
*/
HWND VFWAPIV MCIWndCreate (HWND hwndParent, HINSTANCE hInstance,
DWORD dwStyle,LPVOID szFile)
{ FIXME("%x %x %lx %p\n",hwndParent, hInstance, dwStyle, szFile);
return 0;
}
/***********************************************************************
* MCIWndCreateA [MSVFW.45]
* MCIWndCreateA [MSVFW.44 & MSVFW.45]
*/
HWND VFWAPIV MCIWndCreateA(HWND hwndParent, HINSTANCE hInstance,
DWORD dwStyle,LPCSTR szFile)
......
......@@ -17,6 +17,9 @@ BOOL VFWAPI DrawDibClose(HDRAWDIB hdd);
HDRAWDIB VFWAPI DrawDibOpen(void);
UINT VFWAPI DrawDibRealize(HDRAWDIB hdd, HDC hdc, BOOL fBackground);
BOOL VFWAPI DrawDibSetPalette(HDRAWDIB hdd, HPALETTE hpal);
HWND VFWAPIV MCIWndCreateA(HWND hwndParent, HINSTANCE hInstance, DWORD dwStyle, LPCSTR szFile);
HWND VFWAPIV MCIWndCreateW(HWND hwndParent, HINSTANCE hInstance, DWORD dwStyle, LPCWSTR szFile);
#define MCIWndCreate WINELIB_NAME_AW(MCIWndCreate)
DWORD VFWAPI VideoForWindowsVersion(void);
#ifndef mmioFOURCC
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment