You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
471 B
27 lines
471 B
/* SPDX-License-Identifier: BSD-2-Clause */
|
|
/*
|
|
* Copyright (c) 2018, Intel Corporation
|
|
* All rights reserved.
|
|
*/
|
|
/* Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. */
|
|
|
|
#ifndef TSS2_TCTI_TBS_H
|
|
#define TSS2_TCTI_TBS_H
|
|
|
|
#include "tss2_tcti.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
TSS2_RC Tss2_Tcti_Tbs_Init (
|
|
TSS2_TCTI_CONTEXT *tctiContext,
|
|
size_t *size,
|
|
const char *conf);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* TSS2_TCTI_TBS_H */
|