diff options
Diffstat (limited to 'src/usvfsconnector.h')
| -rw-r--r-- | src/usvfsconnector.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/usvfsconnector.h b/src/usvfsconnector.h index 8a88bde5..5982778b 100644 --- a/src/usvfsconnector.h +++ b/src/usvfsconnector.h @@ -29,6 +29,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include <QDebug> #include <QList> #include <usvfsparameters.h> +#include <log.h> #include "executableinfo.h" @@ -84,8 +85,14 @@ public: ~UsvfsConnector(); void updateMapping(const MappingType &mapping); - void updateParams(int logLevel, int crashDumpsType, QString executableBlacklist); - void updateForcedLibraries(const QList<MOBase::ExecutableForcedLoadSetting> &forcedLibraries); + + void updateParams( + MOBase::log::Levels logLevel, CrashDumpsType crashDumpsType, + const QString& crashDumpsPath, std::chrono::seconds spawnDelay, + QString executableBlacklist); + + void updateForcedLibraries( + const QList<MOBase::ExecutableForcedLoadSetting> &forcedLibraries); private: @@ -96,4 +103,6 @@ private: CrashDumpsType crashDumpsType(int type); +std::vector<HANDLE> getRunningUSVFSProcesses(); + #endif // USVFSCONNECTOR_H |
