pub unsafe fn ie_core_register_plugin(
    core: *mut ie_core_t,
    plugin_name: *const c_char,
    device_name: *const c_char
) -> IEStatusCode
Expand description

@brief Registers a new device and a plugin which implement this device inside Inference Engine. @ingroup Core @param core A pointer to ie_core_t instance. @param plugin_name A name of a plugin. Depending on a platform, plugin_name is wrapped with a shared library suffix and a prefix to identify a full name of the library. @param device_name A device name to register plugin for. If not specified, the method registers a plugin with the default name. @return Status code of the operation: OK(0) for success.