aboutsummaryrefslogtreecommitdiff
path: root/TestParms.c
blob: e49cae0e744ff20cfc217052f9cd8fe85d10fe57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// This file was extracted from the TCG Published
// Trusted Platform Module Library
// Part 3: Commands
// Family "2.0"
// Level 00 Revision 01.16
// October 30, 2014

#include "InternalRoutines.h"
#include "TestParms_fp.h"
TPM_RC
TPM2_TestParms(
   TestParms_In   *in             // IN: input parameter list
   )
{
   // Input parameter is not reference in command action
   in = NULL;

   // The parameters are tested at unmarshal process.   We do nothing in command
   // action
   return TPM_RC_SUCCESS;
}