2024-03-10 14:27:46 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
void init_preferences_HAL(void);
|
|
|
|
void save_preferences_HAL(void);
|
|
|
|
|
2024-04-21 11:53:28 -04:00
|
|
|
std::string get_activeScene_HAL();
|
|
|
|
void set_activeScene_HAL(std::string anActiveScene);
|
|
|
|
std::string get_activeGUIname_HAL();
|
|
|
|
void set_activeGUIname_HAL(std::string anActiveGUIname);
|
|
|
|
int get_activeGUIlist_HAL();
|
|
|
|
void set_activeGUIlist_HAL(int anActiveGUIlist);
|
2024-04-22 11:12:47 -04:00
|
|
|
int get_lastActiveGUIlistIndex_HAL();
|
|
|
|
void set_lastActiveGUIlistIndex_HAL(int aGUIlistIndex);
|