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__
#ifdef __cplusplus
extern "C" {
extern "C"
{
#endif /* __cplusplus */
typedef enum
{
CONTROL_ZERO,
CONTROL_NONE,
CONTROL_TCP
} Gst_TCP_Control;
#ifdef __cplusplus
}
#endif /* __cplusplus */
typedef enum {
CONTROL_ZERO,
CONTROL_NONE,
CONTROL_TCP
} Gst_TCP_Control;
#endif
#endif /* __GST_TCP_H__ */

View file

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