diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-25 17:40:14 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-25 17:40:14 +0000 |
commit | fae17e42b5d32ff133426893ca115310d499ab64 (patch) | |
tree | d05b7a14f373f353d801af3befa89dcbfd89f7b4 /include/m_json.h | |
parent | 0bab5b8df845b10cb0012be9baab1fe24e012c04 (diff) |
JSONNode class exported directly from mir_core, all its functions became available
old json_* functions work as well
git-svn-id: http://svn.miranda-ng.org/main/trunk@13831 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_json.h')
-rw-r--r-- | include/m_json.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/m_json.h b/include/m_json.h index efa0463e39..63980ab4e0 100644 --- a/include/m_json.h +++ b/include/m_json.h @@ -31,7 +31,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #ifdef __cplusplus
-typedef void JSONNODE;
+#include "../src/mir_core/src/json/JSONNode.h"
+typedef JSONNode JSONNODE;
extern "C"
{
|