cc_teec/lib.rs
1// SPDX-License-Identifier: Apache-2.0
2// Copyright (C) 2025-2026 KylinSoft Co., Ltd. <https://www.kylinos.cn/>
3// See LICENSES for license details.
4
5mod cc_client;
6pub mod common;
7mod error;
8mod teec;
9mod teec_trace;
10
11pub use self::{
12 error::{Error, ErrorKind, ErrorOrigin, Result},
13 teec::{
14 TEEC_AllocateSharedMemory, TEEC_CloseSession, TEEC_FinalizeContext, TEEC_InitializeContext,
15 TEEC_InvokeCommand, TEEC_OpenSession, TEEC_RegisterSharedMemory, TEEC_ReleaseSharedMemory,
16 TEEC_RequestCancellation,
17 },
18 teec_trace::*,
19};
20
21pub use teec_api_types as raw;