mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 11:59:58 -05:00
Initial community commit
This commit is contained in:
19
Src/Plugins/Input/in_wmvdrm/WPLLoader.h
Normal file
19
Src/Plugins/Input/in_wmvdrm/WPLLoader.h
Normal file
@ -0,0 +1,19 @@
|
||||
#ifndef NULLSOFT_PLAYLIST_WPL_LOADER_H
|
||||
#define NULLSOFT_PLAYLIST_WPL_LOADER_H
|
||||
|
||||
#include "../playlist/ifc_playlistloader.h"
|
||||
#include "../playlist/ifc_playlistloadercallback.h"
|
||||
#include <stdio.h>
|
||||
class WPLLoader : public ifc_playlistloader
|
||||
{
|
||||
public:
|
||||
int Load(const wchar_t *filename, ifc_playlistloadercallback *playlist);
|
||||
|
||||
public:
|
||||
WPLLoader();
|
||||
virtual ~WPLLoader(void);
|
||||
|
||||
protected:
|
||||
RECVS_DISPATCH;
|
||||
};
|
||||
#endif
|
Reference in New Issue
Block a user