mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-28 05:40:23 -04:00
The kernel driver has some hints you can send to it that changes parser behaviour. This patch exposes that functionality to the user. (This patch also includes minor fixes for documentation, GTK warnings and whitespace.) Signed-off-by: David Henningsson <david.henningsson@canonical.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
15 lines
436 B
C
15 lines
436 B
C
#ifndef __APPLY_CHANGES_H__
|
|
#define __APPLY_CHANGES_H__
|
|
|
|
#include "sysfs-pin-configs.h"
|
|
#include <glib.h>
|
|
|
|
gboolean apply_changes_reconfig(pin_configs_t* pins, int entries, int card, int device,
|
|
const char* model, const char* hints, GError** err);
|
|
|
|
gboolean apply_changes_boot(pin_configs_t* pins, int entries, int card, int device,
|
|
const char* model, const char* hints, GError** err);
|
|
gboolean reset_changes_boot();
|
|
|
|
#endif
|
|
|