2018-11-13 07:41:13 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
//
|
|
|
|
// subcmd.h - a header for each sub-commands.
|
|
|
|
//
|
|
|
|
// Copyright (c) 2018 Takashi Sakamoto <o-takashi@sakamocchi.jp>
|
|
|
|
//
|
|
|
|
// Licensed under the terms of the GNU General Public License, version 2.
|
|
|
|
|
|
|
|
#ifndef __ALSA_UTILS_AXFER_SUBCMD__H_
|
|
|
|
#define __ALSA_UTILS_AXFER_SUBCMD__H_
|
|
|
|
|
|
|
|
#include <alsa/asoundlib.h>
|
|
|
|
|
2018-11-13 07:41:14 +01:00
|
|
|
int subcmd_list(int argc, char *const *argv, snd_pcm_stream_t direction);
|
|
|
|
|
2018-11-13 07:41:29 +01:00
|
|
|
int subcmd_transfer(int argc, char *const *argv, snd_pcm_stream_t direction);
|
|
|
|
|
2018-11-13 07:41:13 +01:00
|
|
|
#endif
|