mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 02:20:48 +00:00
This checks that keyboard state is preserved across system jump. BUG=chrome-os-partner:19236 TEST=Pass the test BRANCH=None Change-Id: I53c5bb68246fd117b351d89c3907daf028bc4ef3 Signed-off-by: Vic Yang <victoryang@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/62908 Reviewed-by: Randall Spangler <rspangler@chromium.org>
20 lines
471 B
C
20 lines
471 B
C
/* 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);
|
|
|
|
void remove_persistent_storage(const char *tag);
|
|
|
|
#endif /* _PERSISTENCE_H */
|