Changes to allow compilation of SetAlgorithmSet.c
BUG=none
TEST=compilation succeeds:
cc -Wall -Werror -c -o /dev/null SetAlgorithmSet.c
Change-Id: I4e1f2654a4255bac792bb09720981d1f65fdf948
Signed-off-by: Vadim Bendebury <[email protected]>
Reviewed-on: https://chromium-review.googlesource.com/274663
Reviewed-by: Utkarsh Sanghi <[email protected]>
diff --git a/SetAlgorithmSet_fp.h b/SetAlgorithmSet_fp.h
new file mode 100644
index 0000000..2a84125
--- /dev/null
+++ b/SetAlgorithmSet_fp.h
@@ -0,0 +1,18 @@
+/*
+ * Copyright 2015 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef __TPM2_SETALGORITHMSET_FP_H_
+#define __TPM2_SETALGORITHMSET_FP_H_
+
+typedef struct {
+ UINT32 algorithmSet;
+} SetAlgorithmSet_In;
+
+TPM_RC TPM2_SetAlgorithmSet(
+ SetAlgorithmSet_In *in // IN: input parameter list
+);
+
+#endif // __TPM2_SETALGORITHMSET_FP_H_