aboutsummaryrefslogtreecommitdiffstats
path: root/docs/development/c-bindings.rst
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2017-06-27 11:15:37 -1000
committerAlex Gaynor <alex.gaynor@gmail.com>2017-06-27 14:15:37 -0700
commit491fd7cc5aefff8064039d073331b41a2f606a63 (patch)
treebef92b0c9f0f3daad2f377acdb1fed28f3899fd9 /docs/development/c-bindings.rst
parent0145873de724744ca9ec584f0fc7c51079b2e68e (diff)
downloadcryptography-491fd7cc5aefff8064039d073331b41a2f606a63.tar.gz
cryptography-491fd7cc5aefff8064039d073331b41a2f606a63.tar.bz2
cryptography-491fd7cc5aefff8064039d073331b41a2f606a63.zip
Funcs macros gone (#3695)
* No more FUNCS/MACROS distinction * change the docs to not talk about MACROS since they're gone * remove out of date comment
Diffstat (limited to 'docs/development/c-bindings.rst')
-rw-r--r--docs/development/c-bindings.rst4
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/development/c-bindings.rst b/docs/development/c-bindings.rst
index 9388958a..43ec4d8d 100644
--- a/docs/development/c-bindings.rst
+++ b/docs/development/c-bindings.rst
@@ -128,9 +128,7 @@ opaque struct::
...;
} QM_TRANSMOGRIFICATION_CTX;
-Confusingly, functions that aren't always available on all supported
-versions of the library, should be defined in ``MACROS`` and *not* in
-``FUNCTIONS``. Fortunately, you just have to copy the signature::
+For functions just add the signature to ``FUNCTIONS``::
int QM_transmogrify(QM_TRANSMOGRIFICATION_CTX *, int);