mirror of
https://github.com/rofafor/vdr-plugin-femon.git
synced 2023-10-10 13:36:53 +02:00
23 lines
374 B
C
23 lines
374 B
C
/*
|
|
* iptvservice.h: IPTV plugin for the Video Disk Recorder
|
|
*
|
|
* See the README file for copyright information and how to reach the author.
|
|
*
|
|
*/
|
|
|
|
#ifndef __IPTVSERVICE_H
|
|
#define __IPTVSERVICE_H
|
|
|
|
#include <vdr/tools.h>
|
|
|
|
#define stIptv ('I' << 24)
|
|
|
|
struct IptvService_v1_0 {
|
|
unsigned int cardIndex;
|
|
cString protocol;
|
|
cString bitrate;
|
|
};
|
|
|
|
#endif //__IPTVSERVICE_H
|
|
|