cleanup demo

This commit is contained in:
2026-01-28 23:20:11 -08:00
parent 8abd009aed
commit fa5d63361c
69 changed files with 72 additions and 469 deletions

View File

@@ -0,0 +1,18 @@
#ifndef CONTROLLER_IMPL_H
#define CONTROLLER_IMPL_H
#ifdef __cplusplus
extern "C" {
#endif
void initServer();
void acceptClient(int clientId);
void sendMessage(int clientId);
int receiveAck(int clientId);
void closeServer();
#ifdef __cplusplus
}
#endif
#endif // CONTROLLER_IMPL_H