Channel_loadMessageBlock

This commit is contained in:
2025-12-08 05:23:24 +05:00
parent 6d1f450f32
commit 88c2f8aa51
14 changed files with 149 additions and 89 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include "tlibc/errors.h"
/// requires tlibc and tlibtoml init
Result(void) TcpChat_init();
void TcpChat_deinit();
ErrorCodePage_declare(WINSOCK2);
ErrorCodePage_declare(TcpChat);
typedef enum TcpChatError {
TcpChatError_Unknown,
TcpChatError_RejectIncoming,
} TcpChatError;