jack_port_set_alias

Set @a alias as an alias for @a port. May be called at any time. If the alias is longer than jack_port_name_size(), it will be truncated.

After a successful call, and until JACK exits or @function jack_port_unset_alias() is called, @alias may be used as a alternate name for the port.

Ports can have up to two aliases - if both are already set, this function will return an error.

@return 0 on success, otherwise a non-zero error code.

extern (C)
int
jack_port_set_alias
(
jack_port_t* port
,
const(char)* alia
)

Meta