blob: 7a93fe4ed6a22b84502c972c72234431f5c0fe4a [file] [log] [blame]
Vadim Bendeburyaeff48d2015-06-01 14:17:50 -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_POLICYCOUNTERTIMER_FP_H_
8#define __TPM2_POLICYCOUNTERTIMER_FP_H_
9
10typedef struct {
11 TPM_EO operation;
12 UINT16 offset;
13 TPM_HANDLE policySession;
14 TPM2B_TIME_INFO operandB;
15} PolicyCounterTimer_In;
16
17TPM_RC TPM2_PolicyCounterTimer(
18 PolicyCounterTimer_In *in // IN: input parameter list
19);
20
21#endif // __TPM2_POLICYCOUNTERTIMER_FP_H_