1 /* SPDX-License-Identifier: BSD-2-Clause */ 2 /* 3 * Copyright (c) 2018, Intel Corporation 4 * All rights reserved. 5 */ 6 /* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. */ 7 8 #ifndef TSS2_TCTI_TBS_H 9 #define TSS2_TCTI_TBS_H 10 11 #include "tss2_tcti.h" 12 13 #ifdef __cplusplus 14 extern "C" { 15 #endif 16 17 TSS2_RC Tss2_Tcti_Tbs_Init ( 18 TSS2_TCTI_CONTEXT *tctiContext, 19 size_t *size, 20 const char *conf); 21 22 #ifdef __cplusplus 23 } 24 #endif 25 26 #endif /* TSS2_TCTI_TBS_H */ 27