File: voicebus_net.h

package info (click to toggle)
dahdi-linux 1%3A2.11.1.0.20170917~dfsg-7.4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 10,336 kB
  • sloc: ansic: 125,072; perl: 2,395; sh: 1,140; makefile: 427; xml: 24
file content (10 lines) | stat: -rw-r--r-- 388 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
#ifdef VOICEBUS_NET_DEBUG
int vb_net_register(struct voicebus *, const char *);
void vb_net_unregister(struct voicebus *);
void vb_net_capture_vbb(struct voicebus *, const void *,
			const int, const u32, const u16);
#else
#define vb_net_register(a, b) do { ; } while (0)
#define vb_net_unregister(a) do { ; } while (0)
#define vb_net_capture_vbb(a, b, c, d, e) do { ; } while (0)
#endif