mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-31 22:25:34 -04:00
16 lines
398 B
C
16 lines
398 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, GError** err);
|
||
|
|
|
||
|
|
gboolean apply_changes_boot(pin_configs_t* pins, int entries, int card, int device,
|
||
|
|
const char* model, GError** err);
|
||
|
|
gboolean reset_changes_boot();
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|