voicebus_net.h 388 B

1234567891011
  1. #ifdef VOICEBUS_NET_DEBUG
  2. int vb_net_register(struct voicebus *, const char *);
  3. void vb_net_unregister(struct voicebus *);
  4. void vb_net_capture_vbb(struct voicebus *, const void *,
  5. const int, const u32, const u16);
  6. #else
  7. #define vb_net_register(a, b) do { ; } while (0)
  8. #define vb_net_unregister(a) do { ; } while (0)
  9. #define vb_net_capture_vbb(a, b, c, d, e) do { ; } while (0)
  10. #endif