summaryrefslogtreecommitdiff
path: root/src/env.h
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2020-07-18 02:24:44 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2020-11-03 11:39:01 -0500
commit5e528fb4cf16ae208944d15d568c9140e3d741e4 (patch)
tree8fd4927aeffb19406e2356d39c2bec0751c7f53d /src/env.h
parentb103f297752b170ee4ade6e0e9085c6d31c020ca (diff)
new CommandLine class
implemented crashdump as a command, fixed dump_running_process.bat to use it attach to console if present instead of always create one
Diffstat (limited to 'src/env.h')
-rw-r--r--src/env.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/env.h b/src/env.h
index 5c7492c6..9bec1713 100644
--- a/src/env.h
+++ b/src/env.h
@@ -307,6 +307,10 @@ enum class CoreDumpTypes
Full
};
+
+CoreDumpTypes coreDumpTypeFromString(const std::string& s);
+std::string toString(CoreDumpTypes type);
+
// creates a minidump file for this process
//
bool coredump(CoreDumpTypes type);