quartz: Make some data const and static.

This commit is contained in:
Dmitry Timoshkov 2006-11-29 18:05:43 +08:00 committed by Alexandre Julliard
parent b2bffdda83
commit c78621eda4
5 changed files with 6 additions and 6 deletions

View File

@ -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,

View File

@ -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,

View File

@ -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[] =

View File

@ -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;

View File

@ -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);