update code

This commit is contained in:
2025-08-15 15:57:31 +08:00
parent 8e0d68bc21
commit e3f9abfd97
376 changed files with 351718 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
@echo off
chcp 65001
for /r %~dp0 %%h in (*.proto) do (
echo 转换:%%h
protoc.exe -I=%~dp0 --cpp_out=%~dp0 %%h
)
pause