mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-18 00:25:45 -04:00
Initial community commit
This commit is contained in:
33
Src/Plugins/Library/ml_impex/itunesxmlwrite.h
Normal file
33
Src/Plugins/Library/ml_impex/itunesxmlwrite.h
Normal file
@ -0,0 +1,33 @@
|
||||
//------------------------------------------------------------------------
|
||||
//
|
||||
// iTunes XML Library Writer
|
||||
// Copyright <20> 2003-2014 Winamp SA
|
||||
//
|
||||
//------------------------------------------------------------------------
|
||||
|
||||
#ifndef _ITUNESXMLWRITE_H
|
||||
#define _ITUNESXMLWRITE_H
|
||||
|
||||
class plistKey;
|
||||
class XMLWrite;
|
||||
class plistData;
|
||||
#include <bfc/string/stringw.h>
|
||||
//------------------------------------------------------------------------
|
||||
|
||||
class iTunesXmlWrite {
|
||||
public:
|
||||
iTunesXmlWrite();
|
||||
virtual ~iTunesXmlWrite();
|
||||
|
||||
int pickFile(HWND hwndDlg, const wchar_t *title=NULL);
|
||||
void saveXml(plistKey *rootkey);
|
||||
|
||||
void writeData(XMLWrite *writer, plistData *data);
|
||||
|
||||
private:
|
||||
StringW file;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
//------------------------------------------------------------------------
|
Reference in New Issue
Block a user