mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
made C++ friendly
Original commit message from CVS: made C++ friendly
This commit is contained in:
parent
d945cd38c8
commit
7095ffbfab
1 changed files with 10 additions and 2 deletions
|
@ -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__ */
|
||||
|
|
Loading…
Reference in a new issue