blob: e9e98f860bf0540003503edfd87f9665bcf1b128 [file] [log] [blame]
Vadim Bendeburyb86371b2015-05-27 18:16:19 -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 __SOURCE_ENTITY_FP_H
8#define __SOURCE_ENTITY_FP_H
9
10TPMI_RH_HIERARCHY EntityGetHierarchy(
11 TPMI_DH_ENTITY handle // IN :handle of entity
12);
Vadim Bendeburyda725062015-05-31 14:41:18 -070013TPM_RC EntityGetLoadStatus(
14 TPM_HANDLE *handle, // IN/OUT: handle of the entity
15 TPM_CC commandCode // IN: the commmandCode
16 );
Vadim Bendebury54a3d362015-06-01 15:26:03 -070017UINT16 EntityGetName(
18 TPMI_DH_ENTITY handle, // IN: handle of entity
19 NAME *name // OUT: name of entity
20 );
21
22#endif // __SOURCE_ENTITY_FP_H