aboutsummaryrefslogtreecommitdiff
path: root/Src/playlist/B4SWriter.h
diff options
context:
space:
mode:
Diffstat (limited to 'Src/playlist/B4SWriter.h')
-rw-r--r--Src/playlist/B4SWriter.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/Src/playlist/B4SWriter.h b/Src/playlist/B4SWriter.h
new file mode 100644
index 00000000..ef2d656f
--- /dev/null
+++ b/Src/playlist/B4SWriter.h
@@ -0,0 +1,24 @@
+#ifndef NULLSOFT_PLAYLIST_B4SWRITER_H
+#define NULLSOFT_PLAYLIST_B4SWRITER_H
+
+#include <stdio.h>
+#include "PlaylistWriter.h"
+
+class B4SWriter : public PlaylistWriter
+{
+public:
+ B4SWriter();
+
+ int Open( const wchar_t *filename ) override;
+ void Write( const wchar_t *filename ) override;
+ void Write( const wchar_t *filename, const wchar_t *title, int length ) override;
+ void Write( const wchar_t *p_filename, const wchar_t *p_title, const wchar_t *p_extended_infos, int p_length ) override
+ {};
+
+ void Close() override;
+
+private:
+ FILE *fp;
+};
+
+#endif \ No newline at end of file