summaryrefslogtreecommitdiffstats
path: root/Src/playlist/B4SWriter.h
blob: ef2d656f8ca59a3b961b1bf7e3e268369594ee6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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