projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d945cd3
)
made C++ friendly
author
Erik Walthinsen
<omega@temple-baptist.org>
Sat, 20 Oct 2001 23:12:36 +0000
(23:12 +0000)
committer
Erik Walthinsen
<omega@temple-baptist.org>
Sat, 20 Oct 2001 23:12:36 +0000
(23:12 +0000)
Original commit message from CVS:
made C++ friendly
gst/gstparse.h
patch
|
blob
|
history
diff --git
a/gst/gstparse.h
b/gst/gstparse.h
index 9374d25f582fb7b91af090c9b8162df3b3902064..fda38ae57c93c8d341ad526952dbc280481af07c 100644
(file)
--- a/
gst/gstparse.h
+++ b/
gst/gstparse.h
@@
-23,10
+23,14
@@
#ifndef __GST_PARSE_H__
#define __GST_PARSE_H__
-#ifndef GST_DISABLE_PARSE
-
#include <gst/gstbin.h>
+#ifdef __cplusplus
+extern "C" {
+#endif /* __cplusplus */
+
+#ifndef GST_DISABLE_PARSE
+
gint gst_parse_launch (const gchar *cmdline, GstBin *parent);
#else // GST_DISABLE_PARSE
@@
-35,4
+39,8
@@
gint gst_parse_launch (const gchar *cmdline, GstBin *parent);
#endif // GST_DISABLE_PARSE
+#ifdef __cplusplus
+}
+#endif /* __cplusplus */
+
#endif /* __GST_PARSE_H__ */