File: voicebus_net.h

package info (click to toggle)
dahdi-linux 1%3A2.6.1%2Bdfsg2-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,212 kB
  • sloc: ansic: 119,954; perl: 1,397; sh: 914; makefile: 489
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