blob: 3d6d4f98ceb3cfa69f81d886bb60bcb80d6fdf51 [file] [log] [blame]
Jocelyn Bohr764a7d62015-07-30 12:57:09 -07001// Copyright 2015 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_EXECCOMMAND_FP_H_
6#define _TPM2_EXECCOMMAND_FP_H_
7
8void ExecuteCommand(
9 unsigned int requestSize, // IN: command buffer size
10 unsigned char *request, // IN: command buffer
11 unsigned int *responseSize, // OUT: response buffer size
12 unsigned char **response // OUT: response buffer
13 );
14
15#endif // _TPM2_EXECCOMMAND_FP_H_