mirror of
https://github.com/PretendoNetwork/Inkay.git
synced 2026-07-14 23:51:08 -05:00
* Fix aroma beta 17 incompatibilities (no network notification, no unregister boss tasks), and fix debug logger * Update Dockerfile * Fix logger.h * Simplify notifcations * Init nn::boss::Task * Small fixes for the storage/config API usage * Do a bunch of stuff, wish I knew what I did but I honestly forgot most of it (this is not considered a 100% functional commit * Remove remnants of has_displayed_popup variables (not needed anymore) * More notifications stuff * Even more notifications stuff * Fix notifications (yay) (thanks maschell) * Disable debug by default * Fix compiler warnings * Update some stuff, cant test have to go --------- Co-authored-by: Maschell <Maschell@gmx.de>
36 lines
663 B
C++
36 lines
663 B
C++
//
|
|
// Created by ash on 10/12/22.
|
|
//
|
|
|
|
#ifndef INKAY_CONFIG_H
|
|
#define INKAY_CONFIG_H
|
|
|
|
class Config {
|
|
public:
|
|
static void Init();
|
|
|
|
// wups config items
|
|
static bool connect_to_network;
|
|
|
|
// private stuff
|
|
static bool need_relaunch;
|
|
|
|
// private stuff
|
|
static bool is_wiiu_menu;
|
|
|
|
static bool unregister_task_item_pressed;
|
|
};
|
|
|
|
struct config_strings {
|
|
const char* plugin_name;
|
|
const char* network_category;
|
|
const char* connect_to_network_setting;
|
|
const char* other_category;
|
|
const char* reset_wwp_setting;
|
|
const char* press_a_action;
|
|
const char* restart_to_apply_action;
|
|
const char* need_menu_action;
|
|
};
|
|
|
|
#endif //INKAY_CONFIG_H
|