mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
20
Src/replicant/player/ifc_playback_parameters.h
Normal file
20
Src/replicant/player/ifc_playback_parameters.h
Normal file
@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
#include "foundation/dispatch.h"
|
||||
|
||||
/* ifc_output_parameters abstracts output parameters that are passed to an input plugin
|
||||
it is things that an input plugin wouldn't necessary know about
|
||||
for example, is a playback object is being used for track preview,
|
||||
it might be configured to play out of a different output device
|
||||
and there's no way an input plugin would know that
|
||||
*/
|
||||
class NOVTABLE ifc_playback_parameters : public Wasabi2::Dispatchable
|
||||
{
|
||||
protected:
|
||||
ifc_playback_parameters() : Dispatchable(DISPATCHABLE_VERSION) {}
|
||||
~ifc_playback_parameters() {}
|
||||
|
||||
enum
|
||||
{
|
||||
DISPATCHABLE_VERSION=0,
|
||||
};
|
||||
};
|
Reference in New Issue
Block a user