added extern "C" statements for inclusion in C++ code

This commit is contained in:
maroy 2005-06-20 11:50:01 +00:00
parent b3914736a4
commit 15696dd330

View file

@ -22,7 +22,7 @@
Author : $Author: maroy $
Version : $Revision: 1.1 $
Version : $Revision: 1.2 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/gstreamerElements/src/util.h,v $
------------------------------------------------------------------------------*/
@ -34,9 +34,13 @@
* Utility functions helping to work with SMIL-related data structures.
*
* @author $Author: maroy $
* @version $Revision: 1.1 $
* @version $Revision: 1.2 $
*/
#ifdef __cplusplus
extern "C" {
#endif
/* ============================================================ include files */
@ -64,5 +68,9 @@ GstPad *
get_src_pad(GstElement * element);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /* Util_h */