ASN1_i2d_bio function

  1. @Native<Int Function(Pointer<NativeFunction<Int Function(Pointer<Void>, Pointer<Pointer<UnsignedChar>>)>>, Pointer<bio_st>, Pointer<Void>)>(ffi.Pointer<ffi.NativeFunction<ffi.Int Function(ffi.Pointer<ffi.Void>, ffi.Pointer<ffi.Pointer<ffi.UnsignedChar>>)>>, ffi.Pointer<bio_st>, ffi.Pointer<ffi.Void>)>()
int ASN1_i2d_bio(
  1. Pointer<NativeFunction<Int Function(Pointer<Void>, Pointer<Pointer<UnsignedChar>>)>> i2d,
  2. Pointer<bio_st> out,
  3. Pointer<Void> x
)

Implementation

@ffi.Native<
  ffi.Int Function(
    ffi.Pointer<
      ffi.NativeFunction<
        ffi.Int Function(
          ffi.Pointer<ffi.Void>,
          ffi.Pointer<ffi.Pointer<ffi.UnsignedChar>>,
        )
      >
    >,
    ffi.Pointer<bio_st>,
    ffi.Pointer<ffi.Void>,
  )
>()
external int ASN1_i2d_bio(
  ffi.Pointer<
    ffi.NativeFunction<
      ffi.Int Function(
        ffi.Pointer<ffi.Void>,
        ffi.Pointer<ffi.Pointer<ffi.UnsignedChar>>,
      )
    >
  >
  i2d,
  ffi.Pointer<bio_st> out,
  ffi.Pointer<ffi.Void> x,
);