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 24aa823989
commit 1e83b097f7

View file

@ -22,14 +22,21 @@
#define __GST_UDP_H__
#ifdef __cplusplus
extern "C" {
extern "C"
{
#endif /* __cplusplus */
typedef enum
{
CONTROL_ZERO,
CONTROL_NONE,
CONTROL_UDP,
CONTROL_TCP
} Gst_UDP_Control;
#ifdef __cplusplus
}
#endif /* __cplusplus */
typedef enum {
CONTROL_ZERO,
CONTROL_NONE,
CONTROL_UDP,
CONTROL_TCP
} Gst_UDP_Control;
#endif /* __GST_UDP_H__ */
#endif