blob: 8c5edd4c361d6d41a67b717ef2240827c8a5d12c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef WEB_H
#define WEB_H
#include "synth_engine.h"
void init_web(synth_t * synth);
void free_web();
void ws_send_message(const char *message);
#endif /* WEB_H */
|