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
c78621ed
Commit
c78621ed
authored
Nov 29, 2006
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Nov 29, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Make some data const and static.
parent
b2bffdda
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
acmwrapper.c
dlls/quartz/acmwrapper.c
+1
-1
avidec.c
dlls/quartz/avidec.c
+1
-1
main.c
dlls/quartz/main.c
+1
-1
transform.c
dlls/quartz/transform.c
+1
-1
transform.h
dlls/quartz/transform.h
+2
-2
No files found.
dlls/quartz/acmwrapper.c
View file @
c78621ed
...
...
@@ -234,7 +234,7 @@ static HRESULT ACMWrapper_Cleanup(TransformFilterImpl* pTransformFilter)
return
S_OK
;
}
TransformFuncsTable
ACMWrapper_FuncsTable
=
{
static
const
TransformFuncsTable
ACMWrapper_FuncsTable
=
{
NULL
,
ACMWrapper_ProcessSampleData
,
NULL
,
...
...
dlls/quartz/avidec.c
View file @
c78621ed
...
...
@@ -257,7 +257,7 @@ static HRESULT AVIDec_Cleanup(TransformFilterImpl* pTransformFilter)
return
S_OK
;
}
TransformFuncsTable
AVIDec_FuncsTable
=
{
static
const
TransformFuncsTable
AVIDec_FuncsTable
=
{
AVIDec_ProcessBegin
,
AVIDec_ProcessSampleData
,
AVIDec_ProcessEnd
,
...
...
dlls/quartz/main.c
View file @
c78621ed
...
...
@@ -209,7 +209,7 @@ HRESULT WINAPI DllCanUnloadNow()
#define OUR_GUID_ENTRY(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
{ { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } } , #name },
static
struct
{
static
const
struct
{
const
GUID
riid
;
const
char
*
name
;
}
InterfaceDesc
[]
=
...
...
dlls/quartz/transform.c
View file @
c78621ed
...
...
@@ -173,7 +173,7 @@ static HRESULT TransformFilter_OutputPin_Construct(const PIN_INFO * pPinInfo, AL
return
E_FAIL
;
}
HRESULT
TransformFilter_Create
(
TransformFilterImpl
*
pTransformFilter
,
const
CLSID
*
pClsid
,
TransformFuncsTable
*
pFuncsTable
)
HRESULT
TransformFilter_Create
(
TransformFilterImpl
*
pTransformFilter
,
const
CLSID
*
pClsid
,
const
TransformFuncsTable
*
pFuncsTable
)
{
HRESULT
hr
;
PIN_INFO
piInput
;
...
...
dlls/quartz/transform.h
View file @
c78621ed
...
...
@@ -42,7 +42,7 @@ struct TransformFilterImpl
IPin
**
ppPins
;
TransformFuncsTable
*
pFuncsTable
;
const
TransformFuncsTable
*
pFuncsTable
;
};
HRESULT
TransformFilter_Create
(
TransformFilterImpl
*
,
const
CLSID
*
,
TransformFuncsTable
*
pFuncsTable
);
HRESULT
TransformFilter_Create
(
TransformFilterImpl
*
,
const
CLSID
*
,
const
TransformFuncsTable
*
pFuncsTable
);
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