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
e8c1bf32
Commit
e8c1bf32
authored
Jun 20, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Jun 20, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make functions static, fix declarations.
parent
78911f34
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
14 deletions
+8
-14
control.c
dlls/quartz/control.c
+1
-1
enummedia.c
dlls/quartz/enummedia.c
+1
-1
enummoniker.c
dlls/quartz/enummoniker.c
+1
-7
filesource.c
dlls/quartz/filesource.c
+1
-1
transform.c
dlls/quartz/transform.c
+4
-4
No files found.
dlls/quartz/control.c
View file @
e8c1bf32
...
...
@@ -163,7 +163,7 @@ HRESULT WINAPI MediaSeekingImpl_ConvertTimeFormat(IMediaSeeking * iface, LONGLON
return
E_INVALIDARG
;
}
__
inline
LONGLONG
Adjust
(
LONGLONG
value
,
LONGLONG
*
pModifier
,
DWORD
dwFlags
)
static
inline
LONGLONG
Adjust
(
LONGLONG
value
,
LONGLONG
*
pModifier
,
DWORD
dwFlags
)
{
switch
(
dwFlags
&
AM_SEEKING_PositioningBitsMask
)
{
...
...
dlls/quartz/enummedia.c
View file @
e8c1bf32
...
...
@@ -50,7 +50,7 @@ void FreeMediaType(AM_MEDIA_TYPE * pMediaType)
}
}
AM_MEDIA_TYPE
*
CreateMediaType
(
AM_MEDIA_TYPE
const
*
pSrc
)
static
AM_MEDIA_TYPE
*
CreateMediaType
(
AM_MEDIA_TYPE
const
*
pSrc
)
{
AM_MEDIA_TYPE
*
pDest
;
...
...
dlls/quartz/enummoniker.c
View file @
e8c1bf32
...
...
@@ -21,16 +21,10 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <stdarg.h>
#define COBJMACROS
#define COM_NO_WINDOWS_H
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "ole2.h"
#include "strmif.h"
#include "quartz_private.h"
#include "wine/debug.h"
...
...
dlls/quartz/filesource.c
View file @
e8c1bf32
...
...
@@ -677,7 +677,7 @@ typedef struct DATAREQUEST
struct
DATAREQUEST
*
pNext
;
/* next data request in list */
}
DATAREQUEST
;
void
queue
(
DATAREQUEST
*
pHead
,
DATAREQUEST
*
pItem
)
static
void
queue
(
DATAREQUEST
*
pHead
,
DATAREQUEST
*
pItem
)
{
DATAREQUEST
*
pCurrent
;
for
(
pCurrent
=
pHead
;
pCurrent
->
pNext
;
pCurrent
=
pCurrent
->
pNext
)
...
...
dlls/quartz/transform.c
View file @
e8c1bf32
...
...
@@ -146,7 +146,7 @@ static HRESULT TransformFilter_InputPin_Construct(const PIN_INFO * pPinInfo, SAM
return
E_FAIL
;
}
HRESULT
TransformFilter_OutputPin_Construct
(
const
PIN_INFO
*
pPinInfo
,
ALLOCATOR_PROPERTIES
*
props
,
LPVOID
pUserData
,
QUERYACCEPTPROC
pQueryAccept
,
LPCRITICAL_SECTION
pCritSec
,
IPin
**
ppPin
)
static
HRESULT
TransformFilter_OutputPin_Construct
(
const
PIN_INFO
*
pPinInfo
,
ALLOCATOR_PROPERTIES
*
props
,
LPVOID
pUserData
,
QUERYACCEPTPROC
pQueryAccept
,
LPCRITICAL_SECTION
pCritSec
,
IPin
**
ppPin
)
{
OutputPin
*
pPinImpl
;
...
...
@@ -497,7 +497,7 @@ static const IBaseFilterVtbl TransformFilter_Vtbl =
TransformFilter_QueryVendorInfo
};
HRESULT
WINAPI
TransformFilter_InputPin_EndOfStream
(
IPin
*
iface
)
static
HRESULT
WINAPI
TransformFilter_InputPin_EndOfStream
(
IPin
*
iface
)
{
InputPin
*
This
=
(
InputPin
*
)
iface
;
TransformFilterImpl
*
pTransform
;
...
...
@@ -545,7 +545,7 @@ static const IPinVtbl TransformFilter_InputPin_Vtbl =
InputPin_NewSegment
};
HRESULT
WINAPI
TransformFilter_Output_EnumMediaTypes
(
IPin
*
iface
,
IEnumMediaTypes
**
ppEnum
)
static
HRESULT
WINAPI
TransformFilter_Output_EnumMediaTypes
(
IPin
*
iface
,
IEnumMediaTypes
**
ppEnum
)
{
IPinImpl
*
This
=
(
IPinImpl
*
)
iface
;
ENUMMEDIADETAILS
emd
;
...
...
@@ -558,7 +558,7 @@ HRESULT WINAPI TransformFilter_Output_EnumMediaTypes(IPin * iface, IEnumMediaTyp
return
IEnumMediaTypesImpl_Construct
(
&
emd
,
ppEnum
);
}
HRESULT
WINAPI
TransformFilter_Output_Disconnect
(
IPin
*
iface
)
static
HRESULT
WINAPI
TransformFilter_Output_Disconnect
(
IPin
*
iface
)
{
OutputPin
*
This
=
(
OutputPin
*
)
iface
;
HRESULT
hr
;
...
...
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