summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source4/scripting/ejs/mprutil.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/source4/scripting/ejs/mprutil.c b/source4/scripting/ejs/mprutil.c
index 4aee7d1c50..2a1036d9a4 100644
--- a/source4/scripting/ejs/mprutil.c
+++ b/source4/scripting/ejs/mprutil.c
@@ -189,3 +189,27 @@ struct MprVar mprNTSTATUS(NTSTATUS status)
return res;
}
+
+/*
+ turn a WERROR into a MprVar object with lots of funky properties
+*/
+struct MprVar mprWERROR(WERROR status)
+{
+ struct MprVar res, val;
+
+ res = mprCreateObjVar("werror", MPR_DEFAULT_HASH_SIZE);
+
+ val = mprCreateStringVar(win_errstr(status), 1);
+ mprCreateProperty(&res, "errstr", &val);
+
+ val = mprCreateIntegerVar(W_ERROR_V(status));
+ mprCreateProperty(&res, "v", &val);
+
+ val = mprCreateBoolVar(W_ERROR_IS_OK(status));
+ mprCreateProperty(&res, "is_ok", &val);
+
+ val = mprCreateBoolVar(True);
+ mprCreateProperty(&res, "is_err", &val);
+
+ return res;
+}