B4SWriter.h 553 B

123456789101112131415161718192021222324
  1. #ifndef NULLSOFT_PLAYLIST_B4SWRITER_H
  2. #define NULLSOFT_PLAYLIST_B4SWRITER_H
  3. #include <stdio.h>
  4. #include "PlaylistWriter.h"
  5. class B4SWriter : public PlaylistWriter
  6. {
  7. public:
  8. B4SWriter();
  9. int Open( const wchar_t *filename ) override;
  10. void Write( const wchar_t *filename ) override;
  11. void Write( const wchar_t *filename, const wchar_t *title, int length ) override;
  12. void Write( const wchar_t *p_filename, const wchar_t *p_title, const wchar_t *p_extended_infos, int p_length ) override
  13. {};
  14. void Close() override;
  15. private:
  16. FILE *fp;
  17. };
  18. #endif