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
a0aa542a
Commit
a0aa542a
authored
Oct 15, 2019
by
Zebediah Figura
Committed by
Alexandre Julliard
Oct 16, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
strmbase: Get rid of the "pfnOnReceiveMessage" callback.
Signed-off-by:
Zebediah Figura
<
z.figura12@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a29b1d58
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
7 deletions
+0
-7
videorenderer.c
dlls/quartz/videorenderer.c
+0
-1
vmr9.c
dlls/quartz/vmr9.c
+0
-1
window.c
dlls/strmbase/window.c
+0
-3
strmbase.h
include/wine/strmbase.h
+0
-2
No files found.
dlls/quartz/videorenderer.c
View file @
a0aa542a
...
...
@@ -443,7 +443,6 @@ static const BaseRendererFuncTable BaseFuncTable =
static
const
BaseWindowFuncTable
renderer_BaseWindowFuncTable
=
{
VideoRenderer_GetClassWindowStyles
,
VideoRenderer_GetDefaultRect
,
NULL
,
VideoRenderer_OnSize
};
...
...
dlls/quartz/vmr9.c
View file @
a0aa542a
...
...
@@ -606,7 +606,6 @@ static BOOL WINAPI VMR9_OnSize(BaseWindow *This, LONG Width, LONG Height)
static
const
BaseWindowFuncTable
renderer_BaseWindowFuncTable
=
{
VMR9_GetClassWindowStyles
,
VMR9_GetDefaultRect
,
NULL
,
VMR9_OnSize
,
};
...
...
dlls/strmbase/window.c
View file @
a0aa542a
...
...
@@ -40,9 +40,6 @@ static LRESULT CALLBACK WndProcW(HWND hwnd, UINT message, WPARAM wparam, LPARAM
if
(
!
This
)
return
DefWindowProcW
(
hwnd
,
message
,
wparam
,
lparam
);
if
(
This
->
pFuncsTable
->
pfnOnReceiveMessage
)
return
This
->
pFuncsTable
->
pfnOnReceiveMessage
(
This
,
hwnd
,
message
,
wparam
,
lparam
);
switch
(
message
)
{
case
WM_KEYDOWN
:
...
...
include/wine/strmbase.h
View file @
a0aa542a
...
...
@@ -371,7 +371,6 @@ typedef struct tagBaseWindow
typedef
LPWSTR
(
WINAPI
*
BaseWindow_GetClassWindowStyles
)(
BaseWindow
*
This
,
DWORD
*
pClassStyles
,
DWORD
*
pWindowStyles
,
DWORD
*
pWindowStylesEx
);
typedef
RECT
(
WINAPI
*
BaseWindow_GetDefaultRect
)(
BaseWindow
*
This
);
typedef
LRESULT
(
WINAPI
*
BaseWindow_OnReceiveMessage
)(
BaseWindow
*
This
,
HWND
hwnd
,
INT
uMsg
,
WPARAM
wParam
,
LPARAM
lParam
);
typedef
BOOL
(
WINAPI
*
BaseWindow_OnSize
)(
BaseWindow
*
This
,
LONG
Height
,
LONG
Width
);
typedef
struct
BaseWindowFuncTable
...
...
@@ -380,7 +379,6 @@ typedef struct BaseWindowFuncTable
BaseWindow_GetClassWindowStyles
pfnGetClassWindowStyles
;
BaseWindow_GetDefaultRect
pfnGetDefaultRect
;
/* Optional, WinProc Related */
BaseWindow_OnReceiveMessage
pfnOnReceiveMessage
;
BaseWindow_OnSize
pfnOnSize
;
}
BaseWindowFuncTable
;
...
...
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