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
6eac2953
Commit
6eac2953
authored
Mar 16, 2004
by
Christian Costa
Committed by
Alexandre Julliard
Mar 16, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added support for MCI_DGV_WHERE_MAX flag in MCIAVI_mciWhere.
Fixed WHERE_WINDOW.
parent
76240a36
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
7 deletions
+27
-7
wnd.c
dlls/winmm/mciavi/wnd.c
+27
-7
No files found.
dlls/winmm/mciavi/wnd.c
View file @
6eac2953
...
@@ -207,36 +207,56 @@ DWORD MCIAVI_mciWhere(UINT wDevID, DWORD dwFlags, LPMCI_DGV_RECT_PARMS lpParms)
...
@@ -207,36 +207,56 @@ DWORD MCIAVI_mciWhere(UINT wDevID, DWORD dwFlags, LPMCI_DGV_RECT_PARMS lpParms)
if
(
lpParms
==
NULL
)
return
MCIERR_NULL_PARAMETER_BLOCK
;
if
(
lpParms
==
NULL
)
return
MCIERR_NULL_PARAMETER_BLOCK
;
if
(
wma
==
NULL
)
return
MCIERR_INVALID_DEVICE_ID
;
if
(
wma
==
NULL
)
return
MCIERR_INVALID_DEVICE_ID
;
if
(
dwFlags
&
MCI_DGV_WHERE_MAX
)
{
FIXME
(
"WHERE_MAX
\n
"
);
return
MCIERR_UNRECOGNIZED_COMMAND
;
}
EnterCriticalSection
(
&
wma
->
cs
);
EnterCriticalSection
(
&
wma
->
cs
);
if
(
dwFlags
&
MCI_DGV_WHERE_DESTINATION
)
{
if
(
dwFlags
&
MCI_DGV_WHERE_DESTINATION
)
{
if
(
dwFlags
&
MCI_DGV_WHERE_MAX
)
{
GetClientRect
(
wma
->
hWndPaint
,
&
lpParms
->
rc
);
TRACE
(
"WHERE_DESTINATION_MAX %s
\n
"
,
wine_dbgstr_rect
(
&
lpParms
->
rc
));
}
else
{
TRACE
(
"WHERE_DESTINATION %s
\n
"
,
wine_dbgstr_rect
(
&
wma
->
dest
));
TRACE
(
"WHERE_DESTINATION %s
\n
"
,
wine_dbgstr_rect
(
&
wma
->
dest
));
lpParms
->
rc
=
wma
->
dest
;
lpParms
->
rc
=
wma
->
dest
;
}
}
}
if
(
dwFlags
&
MCI_DGV_WHERE_FRAME
)
{
if
(
dwFlags
&
MCI_DGV_WHERE_FRAME
)
{
if
(
dwFlags
&
MCI_DGV_WHERE_MAX
)
FIXME
(
"MCI_DGV_WHERE_FRAME_MAX
\n
"
);
else
FIXME
(
"MCI_DGV_WHERE_FRAME
\n
"
);
FIXME
(
"MCI_DGV_WHERE_FRAME
\n
"
);
LeaveCriticalSection
(
&
wma
->
cs
);
LeaveCriticalSection
(
&
wma
->
cs
);
return
MCIERR_UNRECOGNIZED_COMMAND
;
return
MCIERR_UNRECOGNIZED_COMMAND
;
}
}
if
(
dwFlags
&
MCI_DGV_WHERE_SOURCE
)
{
if
(
dwFlags
&
MCI_DGV_WHERE_SOURCE
)
{
if
(
dwFlags
&
MCI_DGV_WHERE_MAX
)
{
RECT
rect
;
rect
.
left
=
0
;
rect
.
top
=
0
;
rect
.
right
=
wma
->
inbih
->
biWidth
;
rect
.
bottom
=
wma
->
inbih
->
biHeight
;
TRACE
(
"WHERE_SOURCE_MAX %s
\n
"
,
wine_dbgstr_rect
(
&
rect
));
lpParms
->
rc
=
rect
;
}
else
{
TRACE
(
"WHERE_SOURCE %s
\n
"
,
wine_dbgstr_rect
(
&
wma
->
source
));
TRACE
(
"WHERE_SOURCE %s
\n
"
,
wine_dbgstr_rect
(
&
wma
->
source
));
lpParms
->
rc
=
wma
->
source
;
lpParms
->
rc
=
wma
->
source
;
}
}
}
if
(
dwFlags
&
MCI_DGV_WHERE_VIDEO
)
{
if
(
dwFlags
&
MCI_DGV_WHERE_VIDEO
)
{
if
(
dwFlags
&
MCI_DGV_WHERE_MAX
)
FIXME
(
"WHERE_VIDEO_MAX
\n
"
);
else
FIXME
(
"WHERE_VIDEO
\n
"
);
FIXME
(
"WHERE_VIDEO
\n
"
);
LeaveCriticalSection
(
&
wma
->
cs
);
LeaveCriticalSection
(
&
wma
->
cs
);
return
MCIERR_UNRECOGNIZED_COMMAND
;
return
MCIERR_UNRECOGNIZED_COMMAND
;
}
}
if
(
dwFlags
&
MCI_DGV_WHERE_WINDOW
)
{
if
(
dwFlags
&
MCI_DGV_WHERE_WINDOW
)
{
GetClientRect
(
wma
->
hWndPaint
,
&
lpParms
->
rc
);
if
(
dwFlags
&
MCI_DGV_WHERE_MAX
)
{
GetWindowRect
(
GetDesktopWindow
(),
&
lpParms
->
rc
);
TRACE
(
"WHERE_WINDOW_MAX %s
\n
"
,
wine_dbgstr_rect
(
&
lpParms
->
rc
));
}
else
{
GetWindowRect
(
wma
->
hWndPaint
,
&
lpParms
->
rc
);
TRACE
(
"WHERE_WINDOW %s
\n
"
,
wine_dbgstr_rect
(
&
lpParms
->
rc
));
TRACE
(
"WHERE_WINDOW %s
\n
"
,
wine_dbgstr_rect
(
&
lpParms
->
rc
));
}
}
}
LeaveCriticalSection
(
&
wma
->
cs
);
LeaveCriticalSection
(
&
wma
->
cs
);
return
0
;
return
0
;
}
}
...
...
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