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.
25 lines
398 B
25 lines
398 B
/* SPDX-License-Identifier: BSD-2-Clause */
|
|
|
|
#ifndef TSS2_RC_H
|
|
#define TSS2_RC_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "tss2_tpm2_types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef const char *(*TSS2_RC_HANDLER)(TSS2_RC rc);
|
|
|
|
const char *Tss2_RC_Decode(TSS2_RC rc);
|
|
|
|
TSS2_RC_HANDLER Tss2_RC_SetHandler(uint8_t layer, const char *name, TSS2_RC_HANDLER handler);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|