1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #ifndef _IAK_RTPC_SUBSCRIBER_H_
- #define _IAK_RTPC_SUBSCRIBER_H_
- #include <AK/SoundEngine/Common/AkTypes.h>
- namespace AK
- {
-
-
-
-
-
-
-
-
- class IAkRTPCSubscriber
- {
- protected:
-
- virtual ~IAkRTPCSubscriber(){}
- public:
-
-
- virtual AKRESULT SetParam(
- AkPluginParamID in_paramID,
- const void * in_pParam,
- AkUInt32 in_uParamSize
- ) = 0;
- };
- }
- #endif
|