summaryrefslogtreecommitdiff
path: root/json_object_private.h
diff options
context:
space:
mode:
authorMichael Clark <michael@metaparadigm.com>2010-10-06 16:39:20 +0000
committerMichael Clark <michael@metaparadigm.com>2010-10-06 16:39:20 +0000
commitc4dceae1c53bc37cacc46a806f8a02524d12a382 (patch)
treec10fe3348cc8ff3ddee17f4cae386cbe2e5421a6 /json_object_private.h
parent88ded9ceb8296eb6661c4d6f8f266ac74d81b9c4 (diff)
* Add int64 support. Two new functions json_object_net_int64 and
json_object_get_int64. Binary compatibility preserved. Eric Haszlakiewicz, EHASZLA at transunion com Rui Miguel Silva Seabra, rms at 1407 dot org git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@56 327403b1-1117-474d-bef2-5cb71233fd97
Diffstat (limited to 'json_object_private.h')
-rw-r--r--json_object_private.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/json_object_private.h b/json_object_private.h
index 9fb4011..a0f9845 100644
--- a/json_object_private.h
+++ b/json_object_private.h
@@ -30,7 +30,8 @@ struct json_object
union data {
boolean c_boolean;
double c_double;
- int c_int;
+ int32_t c_int;
+ int64_t c_int64;
struct lh_table *c_object;
struct array_list *c_array;
char *c_string;