add missing ending c++ blocks BEFORE_INDENT
authorThomas Vander Stichele <thomas@apestaart.org>
Sun, 14 Mar 2004 21:51:28 +0000 (21:51 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Sun, 14 Mar 2004 21:51:28 +0000 (21:51 +0000)
Original commit message from CVS:
add missing ending c++ blocks

gst/udp/gstudp.h

index b069453..89103e9 100644 (file)
 #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