fifo_buffer: add extern "C"
This commit is contained in:
parent
f47f86ef02
commit
76bc28ab1e
@ -22,8 +22,8 @@
|
|||||||
#include "ClientList.hxx"
|
#include "ClientList.hxx"
|
||||||
#include "Partition.hxx"
|
#include "Partition.hxx"
|
||||||
#include "fd_util.h"
|
#include "fd_util.h"
|
||||||
extern "C" {
|
|
||||||
#include "fifo_buffer.h"
|
#include "fifo_buffer.h"
|
||||||
|
extern "C" {
|
||||||
#include "resolver.h"
|
#include "resolver.h"
|
||||||
}
|
}
|
||||||
#include "Permission.hxx"
|
#include "Permission.hxx"
|
||||||
|
@ -19,10 +19,7 @@
|
|||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "ClientInternal.hxx"
|
#include "ClientInternal.hxx"
|
||||||
|
|
||||||
extern "C" {
|
|
||||||
#include "fifo_buffer.h"
|
#include "fifo_buffer.h"
|
||||||
}
|
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -19,11 +19,7 @@
|
|||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "InotifySource.hxx"
|
#include "InotifySource.hxx"
|
||||||
|
|
||||||
extern "C" {
|
|
||||||
#include "fifo_buffer.h"
|
#include "fifo_buffer.h"
|
||||||
}
|
|
||||||
|
|
||||||
#include "fd_util.h"
|
#include "fd_util.h"
|
||||||
#include "mpd_error.h"
|
#include "mpd_error.h"
|
||||||
|
|
||||||
|
@ -46,6 +46,10 @@
|
|||||||
|
|
||||||
struct fifo_buffer;
|
struct fifo_buffer;
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new #fifo_buffer object. Free this object with
|
* Creates a new #fifo_buffer object. Free this object with
|
||||||
* fifo_buffer_free().
|
* fifo_buffer_free().
|
||||||
@ -150,4 +154,8 @@ fifo_buffer_is_empty(struct fifo_buffer *buffer);
|
|||||||
bool
|
bool
|
||||||
fifo_buffer_is_full(struct fifo_buffer *buffer);
|
fifo_buffer_is_full(struct fifo_buffer *buffer);
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user