Store environment variables and use on restart (#380)

- Fixes WerWolv/ImHex#373
This commit is contained in:
qxxxb
2021-12-22 07:16:51 -05:00
committed by GitHub
parent 3d32261f16
commit b047fc0063
6 changed files with 13 additions and 10 deletions

View File

@@ -14,7 +14,7 @@ namespace hex::init {
class WindowSplash {
public:
WindowSplash(int &argc, char **&argv);
WindowSplash(int &argc, char **&argv, char **&envp);
~WindowSplash();
bool loop();
@@ -40,4 +40,4 @@ namespace hex::init {
std::vector<std::pair<std::string, TaskFunction>> m_tasks;
};
}
}