pj_stun_resolve_cb typedef

pj_stun_resolve_cb = Pointer<NativeFunction<Void Function(Pointer<pj_stun_resolve_result> result)>>

Typedef of callback to be registered to #pjsua_resolve_stun_servers() and to be called when STUN resolution completes.

Implementation

typedef pj_stun_resolve_cb = ffi.Pointer<
    ffi.NativeFunction<
        ffi.Void Function(ffi.Pointer<pj_stun_resolve_result> result)>>;