aboutsummaryrefslogtreecommitdiff
path: root/wave.h
diff options
context:
space:
mode:
Diffstat (limited to 'wave.h')
-rw-r--r--wave.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/wave.h b/wave.h
index a28ff4e..3798996 100644
--- a/wave.h
+++ b/wave.h
@@ -3,17 +3,6 @@
#ifndef __WAVE_H__
#define __WAVE_H__ 1
-#define WAVE_ERR_NONE 0
-#define WAVE_ERR_UNKNOWN_ERROR -1
-#define WAVE_ERR_RESOURCE_UNAVAILABLE -2
-#define WAVE_ERR_BAD_DEVICE_ID -3
-#define WAVE_ERR_DEVICE_DRIVER_UNAVAILABLE -4
-#define WAVE_ERR_OUT_OF_MEMORY -5
-#define WAVE_ERR_INVALID_WAVE -6
-#define WAVE_ERR_CANNOT_PLAY -7
-#define WAVE_ERR_INVALID_HANDLE -8
-#define WAVE_ERR_STILL_PLAYING -9
-
typedef struct __wave
{
int channels; // audio channels, mono, stereo, etc...
@@ -26,6 +15,4 @@ typedef struct __wave
int wave_out(wave_t *wave);
-const char *wave_err_to_str(int err);
-
#endif