Skip to content

Binding changes for binding authors version 2.1

aquynh edited this page Sep 26, 2014 · 1 revision

This page details all the changes affecting the bindings, so binding authors only need to look into here to update theirs.

  • API change: cs_close() changes from
cs_err cs_close(csh handle);

to

cs_err cs_close(csh *handle);

Internally, this API invalidates handle after cs_close(). This is to make sure it is impossible to (wrongly) continue to use other APIs after that.