[#ENGINE_get_ex_data] = ENGINE_get_ex_data :mrdocs: Retrieve application data previously stored on an ENGINE. == Synopsis Declared in `<openssl/engine.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] void* ENGINE_get_ex_data( xref:ENGINE.adoc[ENGINE] const* e, int idx); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value Pointer stored at `idx,` or NULL if unset. == Parameters [cols="1,4"] |=== | Name| Description | *e* | ENGINE to query. | *idx* | Index previously obtained from ENGINE_get_ex_new_index(). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#