iotcon_resource_interfaces_foreach_cb typedef

iotcon_resource_interfaces_foreach_cb = Pointer<NativeFunction<iotcon_resource_interfaces_foreach_cbFunction>>

@brief Specifies the iface of function passed to iotcon_resource_interfaces_foreach(). @since_tizen 3.0 @remarks @a iface could be a value such as #IOTCON_INTERFACE_DEFAULT. @paramin iface The value of the resource ifaces @paramin user_data The user data to pass to the function @return @c true to continue with the next iteration of the loop, otherwise @c false to break out of the loop #IOTCON_FUNC_CONTINUE and #IOTCON_FUNC_STOP are more friendly values for the return @pre iotcon_resource_interfaces_foreach() will invoke this callback function. @see iotcon_resource_interfaces_foreach()

Implementation

typedef iotcon_resource_interfaces_foreach_cb = ffi
    .Pointer<ffi.NativeFunction<iotcon_resource_interfaces_foreach_cbFunction>>;