aboutsummaryrefslogtreecommitdiff
path: root/ClockSet_fp.h
diff options
context:
space:
mode:
authorVadim Bendebury <vbendeb@chromium.org>2015-05-29 22:42:37 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-06-03 01:28:11 +0000
commit8212a6df2d60e141456196ba9adf43834e56c60b (patch)
tree9537c716ed264f467952f6227ba3aa2ad3718b59 /ClockSet_fp.h
parent6fc1e9fdb80722a2d4f1d944790b5db64c7dee3a (diff)
downloadtpm2-8212a6df2d60e141456196ba9adf43834e56c60b.tar.gz
Changes to allow compilation of ClockSet.c
BUG=none TEST=compilation succeeds: cc -Wall -Werror -c -o /dev/null ClockSet.c Change-Id: Ifc13e5aa0dd5427bac91f09ce7a54a732d42a568 Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/274091 Reviewed-by: Darren Krahn <dkrahn@chromium.org>
Diffstat (limited to 'ClockSet_fp.h')
-rw-r--r--ClockSet_fp.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/ClockSet_fp.h b/ClockSet_fp.h
new file mode 100644
index 0000000..18a52c5
--- /dev/null
+++ b/ClockSet_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_CLOCKSET_FP_H
+#define __TPM2_CLOCKSET_FP_H
+
+typedef struct {
+ UINT64 newTime;
+} ClockSet_In;
+
+TPM_RC TPM2_ClockSet(
+ ClockSet_In *in // IN: input parameter list
+);
+
+#endif // __TPM2_CLOCKSET_FP_H