mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
12 lines
No EOL
300 B
C++
12 lines
No EOL
300 B
C++
#ifndef NULLSOFT_WINAMP_PLAYLIST_H
|
|
#define NULLSOFT_WINAMP_PLAYLIST_H
|
|
|
|
#include "../playlist/ifc_playlistloadercallback.h"
|
|
|
|
class Playlist : public ifc_playlistloadercallback
|
|
{
|
|
public:
|
|
void OnFile( const wchar_t *filename, const wchar_t *title, int lengthInMS, ifc_plentryinfo *info );
|
|
};
|
|
|
|
#endif |