blob: 0968ac8a848f8a8a5a1b1c74a2cc496d8552b0ef [file] [log] [blame]
Yi Chou86e93372021-01-08 18:22:23 +08001// Copyright 2021 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef TPM2_TPM_SIMULATOR_H_
6#define TPM2_TPM_SIMULATOR_H_
7
8namespace tpm2 {
9
10extern "C" {
11#include <tpm2/_TPM_Init_fp.h>
12#include <tpm2/BaseTypes.h>
13#include <tpm2/ExecCommand_fp.h>
14#include <tpm2/GetCommandCodeString_fp.h>
15#include <tpm2/Platform.h>
16#include <tpm2/tpm_generated.h>
17#include <tpm2/tpm_manufacture.h>
18#include <tpm2/TpmBuildSwitches.h>
19#include <tpm2/Manufacture_fp.h> // NOLINT(build/include_alpha) - needs TpmBuildSwitches.h
20}
21
22} // namespace tpm2
23
24#endif // TPM2_TPM_SIMULATOR_H_