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
c8a213a2
Commit
c8a213a2
authored
Dec 01, 1998
by
Juergen Schmied
Committed by
Alexandre Julliard
Dec 01, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubs for MCIWndCreate[A|W].
parent
07b6939b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
4 deletions
+19
-4
msvideo.c
multimedia/msvideo.c
+16
-1
msvfw32.spec
relay32/msvfw32.spec
+3
-3
No files found.
multimedia/msvideo.c
View file @
c8a213a2
...
...
@@ -147,7 +147,22 @@ DWORD VFWAPIV ICDrawBegin32(
}
HANDLE32
/* HDRAWDIB */
WINAPI
DrawDibOpen32
()
{
DrawDibOpen32
(
void
)
{
FIXME
(
mmsys
,
"stub!
\n
"
);
return
0
;
}
HWND32
VFWAPIV
MCIWndCreate32
(
HWND32
hwndParent
,
HINSTANCE32
hInstance
,
DWORD
dwStyle
,
LPVOID
szFile
)
{
FIXME
(
mmsys
,
"%x %x %lx %p
\n
"
,
hwndParent
,
hInstance
,
dwStyle
,
szFile
);
return
0
;
}
HWND32
VFWAPIV
MCIWndCreate32A
(
HWND32
hwndParent
,
HINSTANCE32
hInstance
,
DWORD
dwStyle
,
LPCSTR
szFile
)
{
FIXME
(
mmsys
,
"%x %x %lx %s
\n
"
,
hwndParent
,
hInstance
,
dwStyle
,
szFile
);
return
0
;
}
HWND32
VFWAPIV
MCIWndCreate32W
(
HWND32
hwndParent
,
HINSTANCE32
hInstance
,
DWORD
dwStyle
,
LPCWSTR
szFile
)
{
FIXME
(
mmsys
,
"%x %x %lx %s
\n
"
,
hwndParent
,
hInstance
,
dwStyle
,
debugstr_w
(
szFile
));
return
0
;
}
relay32/msvfw32.spec
View file @
c8a213a2
...
...
@@ -43,9 +43,9 @@ type win32
41 stub ICSeqCompressFrame
42 stub ICSeqCompressFrameEnd
43 stub ICSeqCompressFrameStart
44 st
ub MCIWndCreate
45 st
ub MCIWndCreate
A
46 st
ub MCIWndCreate
W
44 st
dcall MCIWndCreate (long long long ptr) MCIWndCreate32
45 st
dcall MCIWndCreateA (long long long str) MCIWndCreate32
A
46 st
dcall MCIWndCreateW (long long long wstr) MCIWndCreate32
W
47 stub MCIWndRegisterClass
48 stub StretchDIB
49 stub ls_ThunkData32
...
...
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