Files
adsb-tools/adsbus/send.h
Ian Gulliver 46696933aa Add --log-file
2016-03-07 11:26:25 -08:00

14 lines
281 B
C

#pragma once
struct buf;
struct flow;
struct packet;
void send_init(void);
void send_cleanup(void);
void *send_get_serializer(const char *);
void send_get_hello(struct buf **, void *);
void send_write(struct packet *);
void send_print_usage(void);
extern struct flow *send_flow;