Module: wine Branch: master Commit: c78621eda47671b0420e2c7ab78d4e4ad2488ee1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c78621eda47671b0420e2c7ab7...
Author: Dmitry Timoshkov dmitry@codeweavers.com Date: Wed Nov 29 18:05:43 2006 +0800
quartz: Make some data const and static.
---
dlls/quartz/acmwrapper.c | 2 +- dlls/quartz/avidec.c | 2 +- dlls/quartz/main.c | 2 +- dlls/quartz/transform.c | 2 +- dlls/quartz/transform.h | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/dlls/quartz/acmwrapper.c b/dlls/quartz/acmwrapper.c index 2b25880..62f0020 100644 --- a/dlls/quartz/acmwrapper.c +++ b/dlls/quartz/acmwrapper.c @@ -234,7 +234,7 @@ static HRESULT ACMWrapper_Cleanup(Transf return S_OK; }
-TransformFuncsTable ACMWrapper_FuncsTable = { +static const TransformFuncsTable ACMWrapper_FuncsTable = { NULL, ACMWrapper_ProcessSampleData, NULL, diff --git a/dlls/quartz/avidec.c b/dlls/quartz/avidec.c index c4f8c54..a878500 100644 --- a/dlls/quartz/avidec.c +++ b/dlls/quartz/avidec.c @@ -257,7 +257,7 @@ static HRESULT AVIDec_Cleanup(TransformF return S_OK; }
-TransformFuncsTable AVIDec_FuncsTable = { +static const TransformFuncsTable AVIDec_FuncsTable = { AVIDec_ProcessBegin, AVIDec_ProcessSampleData, AVIDec_ProcessEnd, diff --git a/dlls/quartz/main.c b/dlls/quartz/main.c index def4598..b5e4032 100644 --- a/dlls/quartz/main.c +++ b/dlls/quartz/main.c @@ -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[] = diff --git a/dlls/quartz/transform.c b/dlls/quartz/transform.c index 63b6ad5..59c2e3a 100644 --- a/dlls/quartz/transform.c +++ b/dlls/quartz/transform.c @@ -173,7 +173,7 @@ static HRESULT TransformFilter_OutputPin 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; diff --git a/dlls/quartz/transform.h b/dlls/quartz/transform.h index f29ee67..65adad0 100644 --- a/dlls/quartz/transform.h +++ b/dlls/quartz/transform.h @@ -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);