blob: 554cbff4453ec3684a2f316d37c7476d7e084eb6 [file] [log] [blame] [edit]
/* Copyright 2023 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 __STARFISH_SIM_INFO_H__
#define __STARFISH_SIM_INFO_H__
#include <stdint.h>
struct slot_name {
char name[64];
};
void sim_setting_set_slot_id(int slot_number, int32_t *in);
bool sim_setting_get_slot_id(int slot_number, int32_t *out);
void sim_setting_set_slot_name(int slot_number, struct slot_name *in);
bool sim_setting_get_slot_name(int slot_number, struct slot_name *out);
#endif /* __STARFISH_SIM_INFO_H__ */