Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
7f01aa87
Commit
7f01aa87
authored
Jun 23, 2000
by
Francois Gouget
Committed by
Alexandre Julliard
Jun 23, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merged MCIWndCreate and MCIWndCreateA.
parent
2cfb02a5
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
11 deletions
+5
-11
msvfw32.spec
dlls/msvideo/msvfw32.spec
+1
-1
msvideo_main.c
dlls/msvideo/msvideo_main.c
+1
-10
vfw.h
include/vfw.h
+3
-0
No files found.
dlls/msvideo/msvfw32.spec
View file @
7f01aa87
...
...
@@ -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
...
...
dlls/msvideo/msvideo_main.c
View file @
7f01aa87
...
...
@@ -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
)
...
...
include/vfw.h
View file @
7f01aa87
...
...
@@ -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
...
...
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