blob: 4fb457ed5e9242225d2a0313914ee44e6396467d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*
* inforx.h - part of radio.c, a plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef _INFORX__H
#define _INFORX__H
#include "radioaudio.h"
#include "radiotools.h"
extern bool RT_MsgShow, RT_PlusShow;
extern rtp_classes rtp_content;
extern bool DoInfoReq;
#define RadioInfofile "radioinfo.dat"
int info_request(int chantid, int chanpid);
#endif
|