summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2004-03-14 21:51:28 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2004-03-14 21:51:28 +0000
commite9bef8b9bdbb23fbb2ac5ff7e7ae5818b586060c (patch)
tree781b2a16bc12b4f36e67d4bda4abf1aa0b03000d
parent9bcba871ea2dcaed6d7da254f3eacb584e4b4e3b (diff)
add missing ending c++ blocksBEFORE_INDENT
Original commit message from CVS: add missing ending c++ blocks
-rw-r--r--gst/tcp/gsttcp.h22
-rw-r--r--gst/tcp/gsttcpplugin.h22
2 files changed, 28 insertions, 16 deletions
diff --git a/gst/tcp/gsttcp.h b/gst/tcp/gsttcp.h
index abfe7ff63..1a85d7a80 100644
--- a/gst/tcp/gsttcp.h
+++ b/gst/tcp/gsttcp.h
@@ -22,13 +22,19 @@
#define __GST_TCP_H__
#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
+extern "C"
+{
+#endif /* __cplusplus */
+
+ typedef enum
+ {
+ CONTROL_ZERO,
+ CONTROL_NONE,
+ CONTROL_TCP
+ } Gst_TCP_Control;
-typedef enum {
- CONTROL_ZERO,
- CONTROL_NONE,
- CONTROL_TCP
-} Gst_TCP_Control;
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
-#endif
+#endif /* __GST_TCP_H__ */
diff --git a/gst/tcp/gsttcpplugin.h b/gst/tcp/gsttcpplugin.h
index abfe7ff63..1a85d7a80 100644
--- a/gst/tcp/gsttcpplugin.h
+++ b/gst/tcp/gsttcpplugin.h
@@ -22,13 +22,19 @@
#define __GST_TCP_H__
#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
+extern "C"
+{
+#endif /* __cplusplus */
+
+ typedef enum
+ {
+ CONTROL_ZERO,
+ CONTROL_NONE,
+ CONTROL_TCP
+ } Gst_TCP_Control;
-typedef enum {
- CONTROL_ZERO,
- CONTROL_NONE,
- CONTROL_TCP
-} Gst_TCP_Control;
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
-#endif
+#endif /* __GST_TCP_H__ */