changeset 1405:ffa540ec354d

Clarify function prototypes in the header.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 04 Nov 2017 02:17:26 +0200
parents 89725addaeaf
children cb9865a49134
files minijss/jssplr.h
diffstat 1 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/minijss/jssplr.h	Mon Oct 30 20:33:28 2017 +0200
+++ b/minijss/jssplr.h	Sat Nov 04 02:17:26 2017 +0200
@@ -150,15 +150,15 @@
 
 /* External functions for end users
  */
-int             jmpPlayOrder(JSSPlayer *, int);
-int             jmpChangeOrder(JSSPlayer *, int);
-int             jmpPlayPattern(JSSPlayer *, int);
-void            jmpStop(JSSPlayer *);
-void            jmpResume(JSSPlayer *);
-void            jmpSetModule(JSSPlayer *, JSSModule *);
-JSSPlayer *     jmpInit(JSSMixer *);
-int             jmpClose(JSSPlayer *);
-void            jmpExec(void *, void *);
+int             jmpPlayOrder(JSSPlayer *plr, int order);
+int             jmpChangeOrder(JSSPlayer *plr, int order);
+int             jmpPlayPattern(JSSPlayer *plr, int pattern);
+void            jmpStop(JSSPlayer *plr);
+void            jmpResume(JSSPlayer *plr);
+void            jmpSetModule(JSSPlayer *plr, JSSModule *module);
+JSSPlayer *     jmpInit(JSSMixer *mixer);
+int             jmpClose(JSSPlayer *plr);
+void            jmpExec(void *dev, void *plr);
 
 
 /* Helper macros