#ifndef A7ALSA_H_
#define A7ALSA_H_

#include <alsa/asoundlib.h>
#include "A7XM.h"

#define A7Form A7ALSA

typedef struct A7ALSA_s {
	char *devicename;
	snd_pcm_t* device;
	snd_pcm_format_t format;
	void *params;
} A7ALSA;

#endif // A7ALSA_H_

