mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
11 lines
235 B
C++
11 lines
235 B
C++
#ifndef NULLSOFT_IN_DSHOW_CSAMPLECB_H
|
|
#define NULLSOFT_IN_DSHOW_CSAMPLECB_H
|
|
|
|
class CSampleCB
|
|
{
|
|
public:
|
|
virtual void sample_cb(LONGLONG starttime, LONGLONG endtime, IMediaSample *pSample) { }
|
|
virtual void endofstream() { }}
|
|
;
|
|
|
|
#endif
|