blob: d24e0f8489998a8b2e23a38e1d32ffdf76708e28 [file] [log] [blame]
Vadim Bendeburyf5cc58b2015-05-31 14:09:19 -07001// This file was extracted from the TCG Published
2// Trusted Platform Module Library
3// Part 4: Supporting Routines
4// Family "2.0"
5// Level 00 Revision 01.16
6// October 30, 2014
7
8#ifndef _COMMANDDISPATCHER_FP_H_
9#define _COMMANDDISPATCHER_FP_H_
10TPM_RC
11CommandDispatcher(
12 TPMI_ST_COMMAND_TAG tag, // IN: Input command tag
13 TPM_CC commandCode, // IN: Command code
14 INT32 *parmBufferSize, // IN: size of parameter buffer
15 BYTE *parmBufferStart, // IN: pointer to start of parameter buffer
16 TPM_HANDLE handles[], // IN: handle array
17 UINT32 *responseHandleSize,// OUT: size of handle buffer in response
18 UINT32 *respParmSize // OUT: size of parameter buffer in response
19 );
20#endif // _COMMANDDISPATCHER_FP_H_