wip: ini parse baseline

This commit is contained in:
Hane 2024-12-03 21:13:42 +01:00
commit 8e07b1efdd
9 changed files with 356 additions and 27 deletions

View file

@ -10,8 +10,10 @@
#include <string>
#include <bitset>
#include <locale>
#include <map>
#include "debug.h"
//#include "settings.h"
//TODO: Use tr();? QTranslator
#define STRING_MUTE "Mute"
@ -30,12 +32,17 @@
#define STRING_CP "Open Control Panel"
#define STRING_ABOUT "About"
#define STRING_STARTUP "Run at startup"
#define STRING_CHANNELS "Show endpoint channels"
#define STRING_NOENDPOINT "No active endpoints"
#define LSTRING_UNNAMED_SESSION L"Unnamed session"
//INIT BACK
enum ProcessedNativeEvent {
NONE = 0,
COLORS = (1 << 0),
@ -92,7 +99,11 @@ struct NGuid {
/* }while (i < 8); */
/* } */
};
namespace ini {
class UserSettings;
}
extern ini::UserSettings *set;
class OverseerHandler;
extern OverseerHandler *osh;