Playlist.h 300 B

123456789101112
  1. #ifndef NULLSOFT_WINAMP_PLAYLIST_H
  2. #define NULLSOFT_WINAMP_PLAYLIST_H
  3. #include "../playlist/ifc_playlistloadercallback.h"
  4. class Playlist : public ifc_playlistloadercallback
  5. {
  6. public:
  7. void OnFile( const wchar_t *filename, const wchar_t *title, int lengthInMS, ifc_plentryinfo *info );
  8. };
  9. #endif