24 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * Copyright (C) 2008, Creative Technology Ltd. All Rights Reserved.4 *5 * @File ctpcm.h6 *7 * @Brief8 * This file contains the definition of the pcm device functions.9 *10 * @Author Liu Chun11 * @Date Mar 28 200812 */13 14#ifndef CTPCM_H15#define CTPCM_H16 17#include "ctatc.h"18 19int ct_alsa_pcm_create(struct ct_atc *atc,20 enum CTALSADEVS device,21 const char *device_name);22 23#endif /* CTPCM_H */24