Cleanup voicecat.cpp impl comments
Some checks failed
Build Linux Binaries / linux/amd64 (push) Has been cancelled
Build Linux Binaries / linux/arm64 (push) Has been cancelled

This commit is contained in:
2026-07-03 15:56:14 +01:00
parent 552ffceb66
commit f687370e47

View File

@@ -1,5 +1,5 @@
/* /*
* voicecat.cpp C ABI implementation. * voicecat.cpp: C ABI implementation.
* *
* Lifecycle (create/destroy) and trivial accessors are handled directly here; everything else * Lifecycle (create/destroy) and trivial accessors are handled directly here; everything else
* delegates to vc_client (core/src/core/client.cpp). * delegates to vc_client (core/src/core/client.cpp).
@@ -47,7 +47,7 @@ vc_client* vc_client_create(const vc_config* cfg, vc_callbacks cb) {
void vc_client_destroy(vc_client* c) { delete c; } void vc_client_destroy(vc_client* c) { delete c; }
/* ── Everything below delegates to vc_client (real or stub, per preset above). ───────── */ /* Everything below delegates to vc_client (real or stub, per preset above). */
vc_result vc_connect(vc_client* c, const char* host, uint16_t port) { vc_result vc_connect(vc_client* c, const char* host, uint16_t port) {
if (c == nullptr || host == nullptr) return VC_ERR_INVALID_ARG; if (c == nullptr || host == nullptr) return VC_ERR_INVALID_ARG;