aboutsummaryrefslogtreecommitdiff
path: root/sio.h
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2014-09-10 17:24:15 +0000
committerDimitri Sokolyuk <demon@dim13.org>2014-09-10 17:24:15 +0000
commit9671bb4cc41beda923e115b94b928c249bf55d62 (patch)
tree4c62ccb0b74b0e8116363b022ddda36355454273 /sio.h
parent195e81ffc3af2e40996fbb9861caa2cb7cb2e173 (diff)
make module internal data privat
Diffstat (limited to 'sio.h')
-rw-r--r--sio.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/sio.h b/sio.h
index 775b222..c51cbdf 100644
--- a/sio.h
+++ b/sio.h
@@ -18,13 +18,11 @@
#ifndef __SIO_H
#define __SIO_H
-struct sio;
-
__BEGIN_DECLS
-struct sio *init_sio(void);
-int16_t *read_sio(struct sio *, unsigned int);
-unsigned int max_samples_sio(struct sio *);
-void free_sio(struct sio *);
+int init_sio(void);
+int16_t *read_sio(unsigned int);
+unsigned int max_samples_sio(void);
+void free_sio(void);
__END_DECLS
#endif