From b8b1c49215be6d042bb27e934597251e21d26951 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 27 Nov 2020 14:54:53 +0300 Subject: Add custom code-to-message mapping for STATUS_DLL_NOT_FOUND error to process_exit::description() --- libbutl/process.cxx | 1 + 1 file changed, 1 insertion(+) 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 -- cgit v1.1