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 1.2 kB

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <title>JSON-C - A JSON implementation in C - Win32 specific notes</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  6. </head>
  7. <body>
  8. <h2>Windows specific notes for JSON-C</h2>
  9. <p><b>Win32 Specific Changes:</b></p>
  10. <ul>
  11. <li>
  12. Use <tt>json_config.h.win32</tt> to define Windows specific differences.</li>
  13. <li>
  14. Various functions have been redefined to their Win32 version (i.e. <tt>open</tt>
  15. on win32 is <tt>_open</tt>)</li>
  16. <li>
  17. Implemented missing functions from MS's libc (i.e. <tt>vasprintf</tt>)</li>
  18. <li>
  19. Added code to allow Win64 support without integer resizing issues, this
  20. probably makes it much nicer on 64bit machines everywhere (i.e. using <tt>ptrdiff_t</tt>
  21. for pointer math)</li>
  22. </ul>
  23. <p>This program is free software; you can redistribute it and/or modify it under
  24. the terms of the MIT License. See COPYING for details.</p>
  25. <hr />
  26. </body>
  27. </html>