Commit 2fd33f6c authored by Brendan Shanks's avatar Brendan Shanks Committed by Alexandre Julliard

bcrypt: Ensure unixlib function tables and enum stay in sync.

parent 9492913d
......@@ -319,6 +319,7 @@ enum key_funcs
unix_key_asymmetric_destroy,
unix_key_asymmetric_export,
unix_key_asymmetric_import,
unix_funcs_count,
};
#endif /* __BCRYPT_INTERNAL_H */
......@@ -2271,6 +2271,8 @@ const unixlib_entry_t __wine_unix_call_funcs[] =
key_asymmetric_import
};
C_ASSERT( ARRAYSIZE(__wine_unix_call_funcs) == unix_funcs_count );
#ifdef _WIN64
typedef ULONG PTR32;
......@@ -2752,6 +2754,8 @@ const unixlib_entry_t __wine_unix_call_wow64_funcs[] =
wow64_key_asymmetric_import
};
C_ASSERT( ARRAYSIZE(__wine_unix_call_wow64_funcs) == unix_funcs_count );
#endif /* _WIN64 */
#endif /* HAVE_GNUTLS_CIPHER_INIT */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment