diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-07-17 12:39:01 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-07-22 07:33:38 -0400 |
| commit | 2ef32d12306ac21c0c900ff8f353ff0b573e67ae (patch) | |
| tree | 879c179df39c01a317c19bff40e38769427debe4 /src/shared/util.h | |
| parent | 35ae099d3fcc6c5b42fbd8d10e5efc2427bcf2dc (diff) | |
moved environment dump to member function
added check for nahimic
Diffstat (limited to 'src/shared/util.h')
| -rw-r--r-- | src/shared/util.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index a5d096ac..267bb780 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -410,7 +410,7 @@ public: // list of loaded modules in the current process
//
- const std::vector<Module>& loadedModules();
+ const std::vector<Module>& loadedModules() const;
// information about the operating system
//
@@ -420,6 +420,10 @@ public: //
const std::vector<SecurityProduct>& securityProducts() const;
+ // logs the environment
+ //
+ void dump() const;
+
private:
std::vector<Module> m_modules;
WindowsInfo m_windows;
|
