summaryrefslogtreecommitdiff
path: root/util/smmstoretool/storage.h
blob: 8b91713f14d5d47b35f2c5691f01443a4f170ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: GPL-2.0-or-later */

#ifndef SMMSTORETOOL__STORAGE_H__
#define SMMSTORETOOL__STORAGE_H__

#include "vs.h"
#include "utils.h"

struct storage_t {
	bool rw;
	struct mem_range_t file;
	struct mem_range_t region;
	struct mem_range_t store_area;
	struct var_store_t vs;
};

bool storage_open(const char store_file[], struct storage_t *storage, bool rw);

bool storage_write_back(struct storage_t *storage);

void storage_drop(struct storage_t *storage);

#endif // SMMSTORETOOL__STORAGE_H__