1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- // Declarations of automated parameters used by the plug-in
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- enum
- {
- PARAM_ENABLE,
- // TODO: Add new automated parameter IDs here
- NUM_AUTOMATED_PARAMS,
- // TODO: Add new internal parameter IDs here. Make sure to assign the
- // first value to NUM_AUTOMATED_PARAMS, i.e.,
- //
- // _PARAM_INTERNAL1 = NUM_AUTOMATED_PARAMS,
- // _PARAM_INTERNAL2,
- // ...
- NUM_PARAMS
- };
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
- const ParamInfo CMediaParams::m_aParamInfo[ NUM_PARAMS ] =
- {
- // MP_TYPE MP_CAPS min max def units label int.min int.max "Enum1,Enum2,.."
- // ------- ------- --- --- --- ----- ----- ------- ------- ---------------
- { MPT_BOOL, MP_QUADS, 0, 1, 1, L"", L"Enabled", 0, 1, NULL },
- // TODO: Add entries for additional parameters here
- };
- ////////////////////////////////////////////////////////////////////////////////
- ////////////////////////////////////////////////////////////////////////////////
|