diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-11-27 14:54:53 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-11-27 14:54:53 +0300 |
commit | b8b1c49215be6d042bb27e934597251e21d26951 (patch) | |
tree | b485658390537e843c640952fc4b0b720c6b0991 | |
parent | 18de2b7b5b1b063e7a074878b4e3b3ccdd5c6ebc (diff) |
Add custom code-to-message mapping for STATUS_DLL_NOT_FOUND error to process_exit::description()
-rw-r--r-- | libbutl/process.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libbutl/process.cxx b/libbutl/process.cxx index 3383a73..6c736c1 100644 --- a/libbutl/process.cxx +++ b/libbutl/process.cxx @@ -2102,6 +2102,7 @@ namespace butl { case STATUS_ACCESS_VIOLATION: return "access violation"; case STATUS_DLL_INIT_FAILED: return "DLL initialization failed"; + case STATUS_DLL_NOT_FOUND: return "unable to find DLL"; case STATUS_INTEGER_DIVIDE_BY_ZERO: return "integer divided by zero"; // If a VC-compiled program exits with the STATUS_STACK_BUFFER_OVERRUN |