[][src]Function fluidlite_sys::fluid_settings_getstr

pub unsafe extern "C" fn fluid_settings_getstr(
    settings: *mut fluid_settings_t,
    name: *const c_char,
    str: *mut *mut c_char
) -> c_int

Get the value of a string setting. If the value does not exists, 'str' is set to NULL. Otherwise, 'str' will point to the value. The application does not own the returned value. Instead, the application should make a copy of the value if it needs it later.

\returns 1 if the value exists, 0 otherwise