bstream.h revision 416baccdfbdf5cf94094097179a33abd373ed35e
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#ifndef _BSTREAM_H
#define _BSTREAM_H
#pragma ident "%Z%%M% %I% %E% SMI"
#ifdef __cplusplus
extern "C" {
#endif
struct _bstr_hndl {
int bstr_fd;
int (*bstr_close)(struct _bstr_hndl *h);
void (*bstr_rewind)(struct _bstr_hndl *h);
void *bstr_private;
};
typedef struct _bstr_hndl *bstreamhandle;
extern int str_errno;
/*
* str_errno values
*/
#define STR_ERR_NO_ERR 0
#define STR_ERR_NO_REG_FILE 1
#define STR_ERR_NO_READ_STDIN 2
#define STR_ERR_AU_READ_ERR 3
#define STR_ERR_AU_UNSUPPORTED_FORMAT 4
#define STR_ERR_AU_BAD_HEADER 5
#define STR_ERR_WAV_READ_ERR 6
#define STR_ERR_WAV_UNSUPPORTED_FORMAT 7
#define STR_ERR_WAV_BAD_HEADER 8
char *str_errno_to_string(int serrno);
char *get_tmp_name(void);
#ifdef __cplusplus
}
#endif
#endif /* _BSTREAM_H */