blob: 903ac98e7b305d371652f5387792114de09b0bd7 [file] [log] [blame]
Vadim Bendebury0d658a02015-05-29 22:55:38 -07001/*
2 * Copyright 2015 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#ifndef __TPM2_EVICTCONTROL_FP_H
8#define __TPM2_EVICTCONTROL_FP_H
9
10typedef struct {
11 TPMI_DH_OBJECT objectHandle;
12 TPMI_DH_OBJECT persistentHandle;
13 TPM_RH auth;
14} EvictControl_In;
15
16TPM_RC TPM2_EvictControl(
17 EvictControl_In *in // IN: input parameter list
18 );
19
20#endif // __TPM2_EVICTCONTROL_FP_H