Kodi Development  20.0
for Binary and Script based Add-Ons

Source parts:

bool CMyInstance::OpenRecordedStream(const kodi::addon::PVRRecording& recording)
{
return false;
}
void CMyInstance::CloseRecordedStream()
{
}
int CMyInstance::ReadRecordedStream(unsigned char* buffer, unsigned int size)
{
return 0;
}
int64_t CMyInstance::SeekRecordedStream(int64_t position, int whence)
{
return 0;
}
int64_t CMyInstance::LengthRecordedStream()
{
return 0;
}
Definition: Recordings.h:39