summaryrefslogtreecommitdiff
path: root/libs/libjson
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2017-12-28 18:57:03 +0300
committerGeorge Hazan <ghazan@miranda.im>2017-12-28 18:57:03 +0300
commit6872a9a9b1f032ede5471a8a03abc76e7c7259d9 (patch)
tree59c6e96e8c6f52ba2b6c69cf3b52bc86a8ffb48e /libs/libjson
parent16133fc3ddb4952e78a20078ece5440766b76f73 (diff)
parentf6c14ec9ec02d5eec251f20463aeb2e091978cd7 (diff)
two missing operators added to json wrapper
Diffstat (limited to 'libs/libjson')
-rw-r--r--libs/libjson/src/libjson.def2
-rw-r--r--libs/libjson/src/libjson64.def2
-rw-r--r--libs/libjson/src/stdafx.cxx12
3 files changed, 16 insertions, 0 deletions
diff --git a/libs/libjson/src/libjson.def b/libs/libjson/src/libjson.def
index fcb01c7578..027b0fd092 100644
--- a/libs/libjson/src/libjson.def
+++ b/libs/libjson/src/libjson.def
@@ -199,3 +199,5 @@ json_write_formatted @191
??6@YGAAVJSONNode@@AAV0@ABUINT64_PARAM@@@Z @196 NONAME
??6@YGAAVJSONNode@@AAV0@ABUINT_PARAM@@@Z @197 NONAME
??6@YGAAVJSONNode@@AAV0@ABUWCHAR_PARAM@@@Z @198 NONAME
+??6@YGAAVJSONNode@@AAV0@ABUJSON_PARAM@@@Z @199 NONAME
+??6@YGAAVJSONNode@@AAV0@ABUNULL_PARAM@@@Z @200 NONAME
diff --git a/libs/libjson/src/libjson64.def b/libs/libjson/src/libjson64.def
index e9512805bd..e22d9f62ac 100644
--- a/libs/libjson/src/libjson64.def
+++ b/libs/libjson/src/libjson64.def
@@ -199,3 +199,5 @@ json_write_formatted @191
??6@YAAEAVJSONNode@@AEAV0@AEBUINT64_PARAM@@@Z @196 NONAME
??6@YAAEAVJSONNode@@AEAV0@AEBUINT_PARAM@@@Z @197 NONAME
??6@YAAEAVJSONNode@@AEAV0@AEBUWCHAR_PARAM@@@Z @198 NONAME
+??6@YAAEAVJSONNode@@AEAV0@AEBUJSON_PARAM@@@Z @199 NONAME
+??6@YAAEAVJSONNode@@AEAV0@AEBUNULL_PARAM@@@Z @200 NONAME
diff --git a/libs/libjson/src/stdafx.cxx b/libs/libjson/src/stdafx.cxx
index 21194081bc..b16af99abd 100644
--- a/libs/libjson/src/stdafx.cxx
+++ b/libs/libjson/src/stdafx.cxx
@@ -51,3 +51,15 @@ LIBJSON_DLL(JSONNode&) operator<<(JSONNode &json, const WCHAR_PARAM &param)
json.push_back(JSONNode(param.szName, ptrA(mir_utf8encodeW(param.wszValue)).get()));
return json;
}
+
+LIBJSON_DLL(JSONNode&) operator<<(JSONNode &json, const NULL_PARAM &param)
+{
+ json.push_back(JSONNode(param.szName, nullptr));
+ return json;
+}
+
+LIBJSON_DLL(JSONNode&) operator<<(JSONNode &json, const JSON_PARAM &param)
+{
+ json.push_back(JSONNode(param.szName, param.node));
+ return json;
+}