Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
25
Src/Plugins/Library/ml_disc/M3UWriter.h
Normal file
25
Src/Plugins/Library/ml_disc/M3UWriter.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
#ifndef NULLSOFT_M3UWRITERH
|
||||
#define NULLSOFT_M3UWRITERH
|
||||
|
||||
#include <stdio.h>
|
||||
#include <windows.h>
|
||||
|
||||
class M3UWriter
|
||||
{
|
||||
public:
|
||||
M3UWriter();
|
||||
virtual ~M3UWriter();
|
||||
|
||||
int Open(char *filename, int extendedMode);
|
||||
int Open( FILE *_fp, char *filename, int extendedMode );
|
||||
void SetFilename( char *filename );
|
||||
void SetExtended( char *filename, char *title, int length );
|
||||
void Close();
|
||||
|
||||
private:
|
||||
char basePath[MAX_PATH];
|
||||
int extended = 0;
|
||||
FILE *fp = NULL;
|
||||
};
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue