1c72fcc34Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0
2c72fcc34Sopenharmony_ci//
3c72fcc34Sopenharmony_ci// subcmd.h - a header for each sub-commands.
4c72fcc34Sopenharmony_ci//
5c72fcc34Sopenharmony_ci// Copyright (c) 2018 Takashi Sakamoto <o-takashi@sakamocchi.jp>
6c72fcc34Sopenharmony_ci//
7c72fcc34Sopenharmony_ci// Licensed under the terms of the GNU General Public License, version 2.
8c72fcc34Sopenharmony_ci
9c72fcc34Sopenharmony_ci#ifndef __ALSA_UTILS_AXFER_SUBCMD__H_
10c72fcc34Sopenharmony_ci#define __ALSA_UTILS_AXFER_SUBCMD__H_
11c72fcc34Sopenharmony_ci
12c72fcc34Sopenharmony_ci#include <alsa/asoundlib.h>
13c72fcc34Sopenharmony_ci
14c72fcc34Sopenharmony_ciint subcmd_list(int argc, char *const *argv, snd_pcm_stream_t direction);
15c72fcc34Sopenharmony_ci
16c72fcc34Sopenharmony_ciint subcmd_transfer(int argc, char *const *argv, snd_pcm_stream_t direction);
17c72fcc34Sopenharmony_ci
18c72fcc34Sopenharmony_ci#endif
19