enpose_discover

Function enpose_discover 

Source
#[unsafe(no_mangle)]
pub unsafe extern "C" fn enpose_discover( out_devices: *mut *mut EnposeDeviceInfo, out_count: *mut usize, ) -> EnposeStatus
Expand description

Discover Enpose devices on the local network.

On EnposeStatus::Ok, *out_devices points to a library-allocated array of *out_count EnposeDeviceInfo entries (or NULL with count 0 when none were found). Release it with enpose_device_info_array_free.

ยงSafety

out_devices and out_count must be valid, writable pointers.