11 lines
289 B
C
11 lines
289 B
C
#ifndef __PROTO_DIAL_H__
|
|
#define __PROTO_DIAL_H__
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "context.h"
|
|
|
|
void broadcastClients(EmulContext* emulContext, uint8_t* msg, size_t msgLen);
|
|
void dispatchOutgoingMessage(OutgoingBuffers* outBufs, ws_cli_conn_t clientIdx, uint8_t* msg, size_t msgLen);
|
|
|
|
#endif |