mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-11-14 22:44:55 -05:00
21 lines
No EOL
456 B
C++
21 lines
No EOL
456 B
C++
#ifndef NULLSOFT_PLAYLIST_PLAYLISTCOUNTER_H
|
|
#define NULLSOFT_PLAYLIST_PLAYLISTCOUNTER_H
|
|
|
|
#include "ifc_playlistloadercallback.h"
|
|
|
|
class PlaylistCounter : public ifc_playlistloadercallback
|
|
{
|
|
public:
|
|
PlaylistCounter() {}
|
|
|
|
int OnFile( const wchar_t *filename, const wchar_t *title, int lengthInMS, ifc_plentryinfo *info );
|
|
|
|
size_t count = 0;
|
|
uint64_t length = 0;
|
|
|
|
protected:
|
|
RECVS_DISPATCH;
|
|
|
|
};
|
|
|
|
#endif |