summaryrefslogtreecommitdiff
path: root/chip/host/persistence.h
diff options
context:
space:
mode:
Diffstat (limited to 'chip/host/persistence.h')
-rw-r--r--chip/host/persistence.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/chip/host/persistence.h b/chip/host/persistence.h
new file mode 100644
index 0000000000..37dbc5707a
--- /dev/null
+++ b/chip/host/persistence.h
@@ -0,0 +1,17 @@
+/* Copyright (c) 2013 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.
+ */
+
+/* Persistence module for emulator */
+
+#ifndef _PERSISTENCE_H
+#define _PERSISTENCE_H
+
+#include <stdio.h>
+
+FILE *get_persistent_storage(const char *tag, const char *mode);
+
+void release_persistent_storage(FILE *ps);
+
+#endif /* _PERSISTENCE_H */