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
78c605c3
Commit
78c605c3
authored
Mar 16, 2011
by
Francois Gouget
Committed by
Alexandre Julliard
Mar 16, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Make some functions static.
parent
f7f9f5be
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
4 deletions
+3
-4
acmwrapper.c
dlls/quartz/acmwrapper.c
+1
-1
avidec.c
dlls/quartz/avidec.c
+1
-1
pin.c
dlls/quartz/pin.c
+1
-1
quartz_private.h
dlls/quartz/quartz_private.h
+0
-1
No files found.
dlls/quartz/acmwrapper.c
View file @
78c605c3
...
...
@@ -405,7 +405,7 @@ HRESULT ACMWrapper_create(IUnknown * pUnkOuter, LPVOID * ppv)
return
hr
;
}
HRESULT
WINAPI
ACMWrapper_QueryInterface
(
IBaseFilter
*
iface
,
REFIID
riid
,
LPVOID
*
ppv
)
static
HRESULT
WINAPI
ACMWrapper_QueryInterface
(
IBaseFilter
*
iface
,
REFIID
riid
,
LPVOID
*
ppv
)
{
HRESULT
hr
;
ACMWrapperImpl
*
This
=
(
ACMWrapperImpl
*
)
iface
;
...
...
dlls/quartz/avidec.c
View file @
78c605c3
...
...
@@ -426,7 +426,7 @@ HRESULT AVIDec_create(IUnknown * pUnkOuter, LPVOID * ppv)
return
hr
;
}
HRESULT
WINAPI
AVIDec_QueryInterface
(
IBaseFilter
*
iface
,
REFIID
riid
,
LPVOID
*
ppv
)
static
HRESULT
WINAPI
AVIDec_QueryInterface
(
IBaseFilter
*
iface
,
REFIID
riid
,
LPVOID
*
ppv
)
{
HRESULT
hr
;
AVIDecImpl
*
This
=
(
AVIDecImpl
*
)
iface
;
...
...
dlls/quartz/pin.c
View file @
78c605c3
...
...
@@ -42,7 +42,7 @@ typedef HRESULT (*SendPinFunc)( IPin *to, LPVOID arg );
* Return the first received error code (E_NOTIMPL is ignored)
* If no errors occur: return the first received non-error-code that isn't S_OK
*/
HRESULT
updatehres
(
HRESULT
original
,
HRESULT
new
)
static
HRESULT
updatehres
(
HRESULT
original
,
HRESULT
new
)
{
if
(
FAILED
(
original
)
||
new
==
E_NOTIMPL
)
return
original
;
...
...
dlls/quartz/quartz_private.h
View file @
78c605c3
...
...
@@ -71,7 +71,6 @@ extern void video_unregister_windowclass(void) DECLSPEC_HIDDEN;
BOOL
CompareMediaTypes
(
const
AM_MEDIA_TYPE
*
pmt1
,
const
AM_MEDIA_TYPE
*
pmt2
,
BOOL
bWildcards
);
void
dump_AM_MEDIA_TYPE
(
const
AM_MEDIA_TYPE
*
pmt
);
HRESULT
updatehres
(
HRESULT
original
,
HRESULT
new
);
typedef
struct
StdMediaSample2
{
...
...
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