blob: 5737042bbb15c43ee8ecfb2277044a8981d4e14b [file] [log] [blame]
Vadim Bendebury4a630b22015-06-01 12:28:29 -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_PP_COMMANDS_FP_H_
8#define __TPM2_PP_COMMANDS_FP_H_
9
10typedef struct {
11 TPML_CC setList;
12 TPML_CC clearList;
13} PP_Commands_In;
14
15TPM_RC TPM2_PP_Commands(
16 PP_Commands_In *in // IN: input parameter list
17);
18
19#endif // __TPM2_PP_COMMANDS_FP_H_