aboutsummaryrefslogtreecommitdiffstats
path: root/zmqoutput.h
blob: 8d7cb1313856972f1baa78efa25406cf49061a56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _ZMQOUTPUT_H_
#define _ZMQOUTPUT_H_

#include "common.h"

int zmqoutput_open(Bit_stream_struc * bs, char* uri);

int zmqoutput_write_byte(Bit_stream_struc *bs, unsigned char data);

void zmqoutput_close(Bit_stream_struc *bs);

#endif