mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
add missing ending c++ blocks
Original commit message from CVS: add missing ending c++ blocks
This commit is contained in:
parent
24aa823989
commit
1e83b097f7
1 changed files with 15 additions and 8 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue