1
0

update cmd client

This commit is contained in:
2026-01-08 19:37:25 +08:00
parent 64368b7837
commit 7b22dfb66b
13 changed files with 105 additions and 93 deletions

View File

@@ -78,7 +78,7 @@ namespace basalt::shared::pipe_operator {
return *this;
}
void PipeOperator::Read(void *buffer, size_t size) {
void PipeOperator::read(void *buffer, size_t size) {
if (size == 0) {
return; // 读取0字节直接返回
}
@@ -124,7 +124,7 @@ namespace basalt::shared::pipe_operator {
#endif
}
void PipeOperator::Write(const void *buffer, size_t size) {
void PipeOperator::write(const void *buffer, size_t size) {
if (size == 0) {
return; // 写入0字节直接返回
}