ZotBins Core
Loading...
Searching...
No Matches
Client.hpp
1#ifndef CLIENT_HPP
2#define CLIENT_HPP
3
4#include <stddef.h>
5#include <cstdint>
6
7namespace Client
8{
9 void clientStart(void);
10 void clientPublish(char* data_type, void* value);
11 // ONLY pass null terminated strings to this function! It uses strlen!
12 void clientPublishStr(const char *message);
13}
14
15#endif