1998-08-13 15:42:56 +00:00
|
|
|
/*
|
|
|
|
* error.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define SND_ERROR_BEGIN 500000
|
1999-07-22 10:49:39 +00:00
|
|
|
#define SND_ERROR_INCOMPATIBLE_VERSION (SND_ERROR_BEGIN+0)
|
1998-08-13 15:42:56 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
const char *snd_strerror( int errnum );
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|