summaryrefslogtreecommitdiff
path: root/vchat-connection.h
blob: 2889c8276cfd4942df01364fe054622b0e8b9625 (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#include <stdint.h>

int vc_connect(const char *host, const char *port);
void vc_sendmessage(const char *message);
int vc_receive();
int vc_poll();
void vc_disconnect();