PlaylistCounter.h 456 B

123456789101112131415161718192021
  1. #ifndef NULLSOFT_PLAYLIST_PLAYLISTCOUNTER_H
  2. #define NULLSOFT_PLAYLIST_PLAYLISTCOUNTER_H
  3. #include "ifc_playlistloadercallback.h"
  4. class PlaylistCounter : public ifc_playlistloadercallback
  5. {
  6. public:
  7. PlaylistCounter() {}
  8. int OnFile( const wchar_t *filename, const wchar_t *title, int lengthInMS, ifc_plentryinfo *info );
  9. size_t count = 0;
  10. uint64_t length = 0;
  11. protected:
  12. RECVS_DISPATCH;
  13. };
  14. #endif