blob: 05bb6011d333ebca9d96e66e8f4ee166c88df454 [file] [log] [blame]
Vadim Bendebury4be64b32015-06-01 08:24: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 __TPM2_NV_SETBITS_FP_H_
8#define __TPM2_NV_SETBITS_FP_H_
9
10typedef struct {
11 TPM_HANDLE authHandle;
12 TPMI_RH_NV_INDEX nvIndex;
13 UINT64 bits;
14} NV_SetBits_In;
15
16TPM_RC TPM2_NV_SetBits(
17 NV_SetBits_In *in // IN: input parameter list
18);
19
20#endif // __TPM2_NV_SETBITS_FP_H_