You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README-WIN32.html 2.7 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!DOCTYPE html
  2. PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5. <head>
  6. <title>JSON-C - A JSON implementation in C - Win32 specific notes</title>
  7. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  8. </head>
  9. <body>
  10. <h2>Windows specific notes for JSON-C</h2>
  11. <p>Please send Win32 bug reports to <a href="mailto:christopher.watford@gmail.com">christopher.watford@gmail.com</a></p>
  12. <p><b>Win32 Specific Changes:</b></p>
  13. <ul>
  14. <li>
  15. Various functions have been redefined to their Win32 version (i.e. <tt>open</tt>
  16. on win32 is <tt>_open</tt>)</li>
  17. <li>
  18. Implemented missing functions from MS's libc (i.e. <tt>vasprintf</tt> and <tt>strndup</tt>)</li>
  19. <li>
  20. Added code to allow Win64 support without integer resizing issues, this
  21. probably makes it much nicer on 64bit machines everywhere (i.e. using <tt>ptrdiff_t</tt>
  22. for pointer math)</li>
  23. </ul>
  24. <p><b>Porting Changelog:</b></p>
  25. <dl>
  26. <dt><tt>printbuf.c</tt> - C. Watford (christopher.watford@gmail.com)</dt>
  27. <dd>
  28. Added a Win32/Win64 compliant implementation of <tt>vasprintf</tt></dd>
  29. <dt><tt>debug.c</tt> - C. Watford (christopher.watford@gmail.com)</dt>
  30. <dd>
  31. Removed usage of <tt>vsyslog</tt> on Win32/Win64 systems, needs to be handled
  32. by a configure script</dd>
  33. <dt><tt>json_object.c</tt> - C. Watford (christopher.watford@gmail.com)</dt>
  34. <dd>
  35. Added scope operator to wrap usage of <tt>json_object_object_foreach</tt>, this needs to be
  36. rethought to be more ANSI C friendly</dd>
  37. <dt><tt>json_object.h</tt> - C. Watford (christopher.watford@gmail.com)</dt>
  38. <dd>
  39. Added Microsoft C friendly version of <tt>json_object_object_foreach</tt></dd>
  40. <dt><tt>json_tokener.c</tt> - C. Watford (christopher.watford@gmail.com)</dt>
  41. <dd>
  42. Added a Win32/Win64 compliant implementation of <tt>strndup</tt></dd>
  43. <dt><tt>json_util.c</tt> - C. Watford (christopher.watford@gmail.com)</dt>
  44. <dd>
  45. Added cast and mask to suffice <tt>size_t</tt> v. <tt>unsigned int</tt>
  46. conversion correctness</dd>
  47. </dl>
  48. <h3>Anonymous Subversion</h3>
  49. <p><code># <b>svn co http://svn.metaparadigm.com/svn/json-c/trunk json-c</b></code></p>
  50. <p>Copyright Metaparadigm Pte. Ltd. 2004, 2005. <a href="mailto:michael@metaparadigm.com">Michael
  51. Clark </a>
  52. </p>
  53. <p>This program is free software; you can redistribute it and/or modify it under
  54. the terms of the MIT License. See COPYING for details.</p>
  55. <hr />
  56. </body>
  57. </html>