blob: 728f23590b98aea49591569a14ea20361efb215a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "api_importer.h"
class ImporterAPI : public api_itunes_importer
{
public:
bool iTunesExists();
int ImportFromFile(HWND parent, const wchar_t *library_file);
int ImportFromiTunes(HWND parent);
int ImportPlaylistsFromiTunes(HWND parent);
protected:
RECVS_DISPATCH;
};
|