pub unsafe extern "C" fn APT_AppletUtility(
    id: c_int,
    out: *mut c_void,
    outSize: usize,
    in_: *const c_void,
    inSize: usize
) -> Result
Expand description

Calls an applet utility function.

§Arguments

  • id - Utility function to call.
  • out - Pointer to write output data to.
  • outSize - Size of the output buffer.
  • in - Pointer to the input data.
  • inSize - Size of the input buffer.