Vadim Bendebury | bd25959 | 2015-06-01 18:29:03 -0700 | [diff] [blame] | 1 | /* |
| 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_SETCOMMANDCODEAUDITSTATUS_FP_H_ |
| 8 | #define __TPM2_SETCOMMANDCODEAUDITSTATUS_FP_H_ |
| 9 | |
| 10 | typedef struct { |
Vadim Bendebury | f788ffb | 2015-06-05 12:57:27 -0700 | [diff] [blame^] | 11 | TPML_CC clearList; |
| 12 | TPML_CC setList; |
| 13 | TPM_ALG_ID auditAlg; |
Vadim Bendebury | bd25959 | 2015-06-01 18:29:03 -0700 | [diff] [blame] | 14 | } SetCommandCodeAuditStatus_In; |
| 15 | |
| 16 | TPM_RC TPM2_SetCommandCodeAuditStatus( |
Vadim Bendebury | f788ffb | 2015-06-05 12:57:27 -0700 | [diff] [blame^] | 17 | SetCommandCodeAuditStatus_In *in // IN: input parameter list |
| 18 | ); |
Vadim Bendebury | bd25959 | 2015-06-01 18:29:03 -0700 | [diff] [blame] | 19 | |
Vadim Bendebury | f788ffb | 2015-06-05 12:57:27 -0700 | [diff] [blame^] | 20 | #endif // __TPM2_SETCOMMANDCODEAUDITSTATUS_FP_H_ |