changeset 1223:82cc143cb7d2

Add function argument names to prototypes.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 06 Mar 2015 09:54:30 +0200
parents 823f8e06ff6a
children e667710aee8e
files minijss/jssmod.h
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/minijss/jssmod.h	Fri Mar 06 09:53:39 2015 +0200
+++ b/minijss/jssmod.h	Fri Mar 06 09:54:30 2015 +0200
@@ -301,19 +301,20 @@
 int                 jssDecodeSample16(Uint16 *, const size_t, const int);
 int                 jssConvertModuleForPlaying(JSSModule *module);
 JSSModule *         jssAllocateModule(void);
-int                 jssFreeModule(JSSModule *);
-JSSPattern *        jssAllocatePattern(const int, const int);
+int                 jssFreeModule(JSSModule * module);
+JSSPattern *        jssAllocatePattern(const int nrows, const int nchannels);
 JSSInstrument *     jssAllocateInstrument(void);
 JSSExtInstrument *  jssAllocateExtInstrument(void);
 
 #ifdef JSS_SUP_XM
-int        jssLoadXM(DMResource *, JSSModule **, BOOL);
+int        jssLoadXM(DMResource *file, JSSModule **pmodule, BOOL probe);
 #endif
 
 #ifdef JSS_SUP_JSSMOD
-int        jssLoadJSSMOD(DMResource *, JSSModule **, BOOL);
+int        jssLoadJSSMOD(DMResource *file, JSSModule **pmodule, BOOL probe);
 #endif
 
+
 #ifdef __cplusplus
 }
 #endif