diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-09-12 02:45:03 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-09-12 02:45:03 -0400 |
| commit | ac6bc5fd01e115d523de65a02e46b2cde1188d37 (patch) | |
| tree | 6849ce32e1f869b3fc39d01e26e06607104297bf /src/env.h | |
| parent | bf3d7527801bcba16ba01735efd3d5acc052f485 (diff) | |
testForSteam() now uses env to get processes
moved processes from env.cpp to envmodule.cpp, merged what crash dumps did with what was in testForSteam()
Diffstat (limited to 'src/env.h')
| -rw-r--r-- | src/env.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -7,6 +7,7 @@ namespace env { class Module; +class Process; class SecurityProduct; class WindowsInfo; class Metrics; @@ -129,6 +130,10 @@ public: // const std::vector<Module>& loadedModules() const; + // list of running processes; not cached + // + std::vector<Process> runningProcesses() const; + // information about the operating system // const WindowsInfo& windowsInfo() const; |
