Commit 5d09460c authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

DTV: allow C++ inclusion

parent c5679249
...@@ -20,6 +20,12 @@ ...@@ -20,6 +20,12 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
****************************************************************************/ ****************************************************************************/
#ifndef VLC_DTV_H
# define VLC_DTV_H 1
# ifdef __cplusplus
extern "C" {
# endif
typedef struct delsys delsys_t; typedef struct delsys delsys_t;
extern const delsys_t dvbc, dvbs, dvbs2, dvbt, atsc, cqam; extern const delsys_t dvbc, dvbs, dvbs2, dvbt, atsc, cqam;
...@@ -83,3 +89,7 @@ typedef struct isdbt_sound ...@@ -83,3 +89,7 @@ typedef struct isdbt_sound
int dvb_set_isdbt (dvb_device_t *, uint32_t freq, const isdbt_layer_t *a, int dvb_set_isdbt (dvb_device_t *, uint32_t freq, const isdbt_layer_t *a,
const isdbt_layer_t *b, const isdbt_layer_t *c, const isdbt_layer_t *b, const isdbt_layer_t *c,
const isdbt_sound_t *sb); const isdbt_sound_t *sb);
# ifdef __cplusplus
}
# endif
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment