cnv_pcmwaveout.h 774 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #ifndef _CNV_DS2_H
  2. #define _CNV_DS2_H
  3. #include "../studio/wac.h"
  4. #include "../common/rootcomp.h"
  5. #include "../attribs/cfgitemi.h"
  6. #include "../attribs/attrint.h"
  7. #include "../attribs/attrbool.h"
  8. #include "../attribs/attrstr.h"
  9. #include "../studio/services/svc_mediaconverter.h"
  10. #include "../studio/services/servicei.h"
  11. #include "../studio/corecb.h"
  12. #include "../studio/wac.h"
  13. #define WACNAME WACcnv_waveout
  14. class WACNAME : public WAComponentClient {
  15. public:
  16. WACNAME();
  17. virtual ~WACNAME();
  18. virtual const char *getName() { return "WaveOut Output"; };
  19. virtual GUID getGUID();
  20. virtual void onDestroy();
  21. virtual void onCreate();
  22. virtual int getDisplayComponent() { return FALSE; };
  23. virtual CfgItem *getCfgInterface(int n) { return this; }
  24. };
  25. #endif