![]() |
![]()
| ![]() |
![]()
NAMETss2_TctiLdr_FreeInfo - Function to free a TSS2_TCTI_INFO structure allocated by Tss2_TctiLdr_Initialize(). SYNOPSIS#include <tss2/tss2_tctildr.h> void Tss2_TctiLdr_FreeInfo (TSS2_TCTI_INFO*info); DESCRIPTIONThe Tss2_TctiLdr_FreeInfo() function destroys an instance of the TSS2_TCTI_INFO structure created by the Tss2_TctiLdr_GetInfo() function. The info parameter is a reference to the TSS2_TCTI_INFO structure to be freed. RETURN VALUEThis function returns no value. EXAMPLEExample code. #include <inttypes.h> #include <stdlib.h> #include <stdio.h> #include <tss2/tss2_tctildr.h> TSS2_TCTI_INFO *info = NULL; TSS2_RC rc = Tss2_TctiLdr_GetInfo (NULL, &info); if (rc != TSS2_RC_SUCCESS) { AUTHORTPM2 Software Project <https://github.com/tpm2-software/tpm2-tss> SEE ALSOTss2_Tcti_Device_Init(3), Tss2_Tcti_Socket_Init(3), Tss2_TctiLdr_Initialize(3), Tss2_TctiLdr_Finalize(3), tcti-device(7), tcti-socket(7), tcti-tabrmd(7), tpm2-abrmd(8) COLOPHONThis page is part of release 4.0.1 of Open Source implementation of the TCG TPM2 Software Stack (TSS2). A description of the project, information about reporting bugs, and the latest version of this page can be found at https://github.com/tpm2-software/tpm2-tss/.
|