diff options
| author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-03-14 21:51:28 +0000 | 
|---|---|---|
| committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-03-14 21:51:28 +0000 | 
| commit | 1e83b097f7b732ae49e294a5a398bdc3e88854a8 (patch) | |
| tree | 444de0f992125f40bd5dad26d87cace06e8f24d6 | |
| parent | 24aa8239896004ff3767babbf22d819f470c418a (diff) | |
add missing ending c++ blocks
Original commit message from CVS:
add missing ending c++ blocks
| -rw-r--r-- | gst/udp/gstudp.h | 23 | 
1 files changed, 15 insertions, 8 deletions
diff --git a/gst/udp/gstudp.h b/gst/udp/gstudp.h index b069453b..89103e93 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  | 
