blob: c4ad3dff169eb0e9a417fe0ffa4ad9c137cdb6b3 [file] [log] [blame]
Vadim Bendeburyea467262015-05-29 23:00:43 -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_GETTESTRESULT_FP_H
8#define __TPM2_GETTESTRESULT_FP_H
9
10typedef struct {
11 TPM_RC testResult;
12 TPM2B_MAX_BUFFER outData;
13} GetTestResult_Out;
14
15TPM_RC TPM2_GetTestResult(
16 GetTestResult_Out *out // OUT: output parameter list
17 );
18
19#endif // __TPM2_GETTESTRESULT_FP_H