chore: archive old C++ CMake build to .deprecated-cmake/; Rust is now canonical

This commit is contained in:
2026-04-28 22:47:45 +08:00
parent b7f756bc2b
commit 313315cd3f
9 changed files with 0 additions and 0 deletions
@@ -0,0 +1,11 @@
/*
* 比特安索(Bitanswer)适配器实现(占位)。
*
* 版权所有 © 广州创飞人工智能技术有限公司
* 开发者:huangping@craftlabs.cn
*/
#include "bitanswer_adapter.h"
void bitanswer_adapter_register(void) {
/* 后续里程碑:在此挂接 Bit_LoginEx、Bit_QueryFeature 等与 craftlabs_auth 生命周期对齐。 */
}
@@ -0,0 +1,20 @@
/*
* 比特安索(Bitanswer)适配器注册入口。
*
* 版权所有 © 广州创飞人工智能技术有限公司
* 开发者:huangping@craftlabs.cn
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
/**
* 向核心库注册 Bitanswer 相关钩子;当前里程碑可为空实现,后续接入 Bit_LoginEx / Bit_QueryFeature 等。
*/
void bitanswer_adapter_register(void);
#ifdef __cplusplus
}
#endif