diff options
| -rw-r--r-- | cryptography/bindings/openssl/err.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cryptography/bindings/openssl/err.py b/cryptography/bindings/openssl/err.py index 76c34a03..39ae315c 100644 --- a/cryptography/bindings/openssl/err.py +++ b/cryptography/bindings/openssl/err.py @@ -51,4 +51,9 @@ int ERR_get_next_error_library(); """ MACROS = """ +unsigned long ERR_PACK(int, int, int); +int ERR_GET_LIB(unsigned long); +int ERR_GET_FUNC(unsigned long); +int ERR_GET_REASON(unsigned long); +int ERR_FATAL_ERROR(unsigned long); """ |
