mpv_client_name method

Pointer<Int8> mpv_client_name(
  1. Pointer<mpv_handle> ctx
)

Return the name of this client handle. Every client has its own unique name, which is mostly used for user interface purposes.

@return The client name. The string is read-only and is valid until the mpv_handle is destroyed.

Implementation

ffi.Pointer<ffi.Int8> mpv_client_name(
  ffi.Pointer<mpv_handle> ctx,
) {
  return _mpv_client_name(
    ctx,
  );
}