mc_server_playback_position_cmd_received_cb typedef

mc_server_playback_position_cmd_received_cb = Pointer<NativeFunction<mc_server_playback_position_cmd_received_cbFunction>>

@brief Called when the server receives the playback position from the client. @since_tizen @if MOBILE 4.0 @elseif WEARABLE 5.0 @endif

@remarks The callback is called in the dbus event loop.\n If @a request_id is not null, the server should send the reply to the client with the @a request_id.\n The @a client_name and @a request_id should not be released by the application. \n The @a client_name and @a request_id can be used only in the callback. To use outside, make a copy.

@paramin client_name The app_id of the media controller client @paramin request_id The request_id of the media controller client @paramin position The received playback position (milliseconds) @paramin user_data The user data passed from the mc_server_set_playback_position_cmd_received_cb() function

@pre mc_server_set_playback_position_cmd_received_cb()

@see mc_server_set_playback_position_cmd_received_cb() @see mc_server_send_cmd_reply()

Implementation

typedef mc_server_playback_position_cmd_received_cb = ffi.Pointer<
    ffi.NativeFunction<mc_server_playback_position_cmd_received_cbFunction>>;