1// 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_ 16