Archived
1
0
This repository has been archived on 2024-10-17. You can view files and clone it, but cannot push or open issues or pull requests.
winamp/Src/playlist/PlaylistCounter.h
2024-09-24 14:54:57 +02:00

21 lines
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