json_object_private.h 990 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * $Id: json_object_private.h,v 1.4 2006/01/26 02:16:28 mclark Exp $
  3. *
  4. * Copyright (c) 2004, 2005 Metaparadigm Pte. Ltd.
  5. * Michael Clark <michael@metaparadigm.com>
  6. *
  7. * This library is free software; you can redistribute it and/or modify
  8. * it under the terms of the MIT license. See COPYING for details.
  9. *
  10. */
  11. #ifndef _json_object_private_h_
  12. #define _json_object_private_h_
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. typedef void (json_object_private_delete_fn)(struct json_object *o);
  17. struct json_object
  18. {
  19. enum json_type o_type;
  20. json_object_private_delete_fn *_delete;
  21. json_object_to_json_string_fn *_to_json_string;
  22. int _ref_count;
  23. struct printbuf *_pb;
  24. union data {
  25. json_bool c_boolean;
  26. double c_double;
  27. int64_t c_int64;
  28. struct lh_table *c_object;
  29. struct array_list *c_array;
  30. struct {
  31. char *str;
  32. int len;
  33. } c_string;
  34. } o;
  35. json_object_delete_fn *_user_delete;
  36. void *_userdata;
  37. };
  38. #ifdef __cplusplus
  39. }
  40. #endif
  41. #endif