add missing ending c++ blocks

Original commit message from CVS:
add missing ending c++ blocks
This commit is contained in:
Thomas Vander Stichele 2004-03-14 21:51:28 +00:00
parent 9bcba871ea
commit e9bef8b9bd
2 changed files with 28 additions and 16 deletions

View file

@ -22,13 +22,19 @@
#define __GST_TCP_H__ #define __GST_TCP_H__
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C"
{
#endif /* __cplusplus */ #endif /* __cplusplus */
typedef enum { typedef enum
{
CONTROL_ZERO, CONTROL_ZERO,
CONTROL_NONE, CONTROL_NONE,
CONTROL_TCP CONTROL_TCP
} Gst_TCP_Control; } Gst_TCP_Control;
#endif #ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __GST_TCP_H__ */

View file

@ -22,13 +22,19 @@
#define __GST_TCP_H__ #define __GST_TCP_H__
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C"
{
#endif /* __cplusplus */ #endif /* __cplusplus */
typedef enum { typedef enum
{
CONTROL_ZERO, CONTROL_ZERO,
CONTROL_NONE, CONTROL_NONE,
CONTROL_TCP CONTROL_TCP
} Gst_TCP_Control; } Gst_TCP_Control;
#endif #ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __GST_TCP_H__ */