From 1e83b097f7b732ae49e294a5a398bdc3e88854a8 Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 14 Mar 2004 21:51:28 +0000 Subject: [PATCH] add missing ending c++ blocks Original commit message from CVS: add missing ending c++ blocks --- gst/udp/gstudp.h | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/gst/udp/gstudp.h b/gst/udp/gstudp.h index b069453..89103e9 100644 --- a/gst/udp/gstudp.h +++ b/gst/udp/gstudp.h @@ -22,14 +22,21 @@ #define __GST_UDP_H__ #ifdef __cplusplus -extern "C" { +extern "C" +{ +#endif /* __cplusplus */ + + typedef enum + { + CONTROL_ZERO, + CONTROL_NONE, + CONTROL_UDP, + CONTROL_TCP + } Gst_UDP_Control; + +#ifdef __cplusplus +} #endif /* __cplusplus */ -typedef enum { - CONTROL_ZERO, - CONTROL_NONE, - CONTROL_UDP, - CONTROL_TCP -} Gst_UDP_Control; +#endif /* __GST_UDP_H__ */ -#endif -- 2.7.4