[Liboss-commit] CVS: liboss/include soundcard.h,1.7,1.8
Brought to you by:
thesin
|
From: Justin <th...@us...> - 2002-11-05 16:43:17
|
Update of /cvsroot/liboss/liboss/include
In directory usw-pr-cvs1:/tmp/cvs-serv11674
Modified Files:
soundcard.h
Log Message:
need to have same type as in acctualy definitions, getting a little further
Index: soundcard.h
===================================================================
RCS file: /cvsroot/liboss/liboss/include/soundcard.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- soundcard.h 31 Oct 2002 01:15:00 -0000 1.7
+++ soundcard.h 5 Nov 2002 16:43:12 -0000 1.8
@@ -296,7 +296,7 @@
#ifndef LIBOSS_INTERNAL
extern int oss_ioctl (int,unsigned long,va_list);
extern int oss_open (const char *,int,va_list);
-extern void oss_close (int);
+extern int oss_close (int);
static inline int ioctl (int x, unsigned long y,...)
{
@@ -316,7 +316,7 @@
#else
extern int oss_ioctl (int,unsigned long,va_list);
extern int oss_open (const char *,int,va_list);
-extern void oss_close (int);
+extern int oss_close (int);
#endif
__END_DECLS
#endif /* !_SOUNDCARD_H_ */
|