blob: bd0c58e6e5a4b276e988709bd2d6d4bf95ec8c1f [file] [log] [blame]
Vadim Bendebury8bd48cf2015-06-01 13:24:25 -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_POLICYCOMMANDCODE_FP_H_
8#define __TPM2_POLICYCOMMANDCODE_FP_H_
9
10typedef struct {
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070011 TPM_HANDLE policySession;
12 TPM_CC code;
Vadim Bendebury8bd48cf2015-06-01 13:24:25 -070013} PolicyCommandCode_In;
14
15TPM_RC TPM2_PolicyCommandCode(
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070016 PolicyCommandCode_In *in // IN: input parameter list
17 );
Vadim Bendebury8bd48cf2015-06-01 13:24:25 -070018
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070019#endif // __TPM2_POLICYCOMMANDCODE_FP_H_