1. 22 8月, 2015 1 次提交
  2. 04 7月, 2015 1 次提交
  3. 03 7月, 2015 1 次提交
  4. 07 5月, 2015 1 次提交
  5. 23 3月, 2015 1 次提交
  6. 17 11月, 2014 2 次提交
  7. 27 9月, 2014 1 次提交
    • J
      (API Change) Use const params where applicable · 41fad2d1
      jp9000 提交于
      This Fixes a minor flaw with the API where data had to always be mutable
      to be usable by the API.
      
      Functions that do not modify the fundamental underlying data of a
      structure should be marked as constant, both for safety and to signify
      that the parameter is input only and will not be modified by the
      function using it.
      41fad2d1
  8. 26 9月, 2014 1 次提交
    • J
      (API Change) Remove pointers from all typedefs · c9df41c1
      jp9000 提交于
      Typedef pointers are unsafe.  If you do:
      typedef struct bla *bla_t;
      then you cannot use it as a constant, such as: const bla_t, because
      that constant will be to the pointer itself rather than to the
      underlying data.  I admit this was a fundamental mistake that must
      be corrected.
      
      All typedefs that were pointer types will now have their pointers
      removed from the type itself, and the pointers will be used when they
      are actually used as variables/parameters/returns instead.
      
      This does not break ABI though, which is pretty nice.
      c9df41c1
  9. 14 7月, 2014 1 次提交
  10. 15 4月, 2014 1 次提交
  11. 08 3月, 2014 1 次提交
  12. 10 2月, 2014 1 次提交
  13. 26 12月, 2013 1 次提交
  14. 19 12月, 2013 1 次提交
  15. 18 12月, 2013 1 次提交
  16. 16 12月, 2013 1 次提交
  17. 13 12月, 2013 1 次提交
  18. 08 12月, 2013 1 次提交
  19. 24 11月, 2013 1 次提交
  20. 18 10月, 2013 1 次提交
  21. 01 10月, 2013 1 次提交