static u_int32_t le2hl P_ ((u_int32_t));
static u_int16_t le2hs P_ ((u_int16_t));
static u_int32_t be2hl P_ ((u_int32_t));
-static u_int16_t be2hs P_ ((u_int16_t));
static int wav_init P_ ((struct sound_file *));
static void wav_play P_ ((struct sound_file *, struct sound_device *));
static int au_init P_ ((struct sound_file *));
static void au_play P_ ((struct sound_file *, struct sound_device *));
+#if 0 /* Currently not used. */
+static u_int16_t be2hs P_ ((u_int16_t));
+#endif
+
\f
/***********************************************************************
Lisp_Object sound;
{
Lisp_Object attrs[SOUND_ATTR_SENTINEL];
- char *header;
Lisp_Object file;
struct gcpro gcpro1, gcpro2;
int nbytes;
- char *msg;
struct sound_device sd;
struct sound_file sf;
Lisp_Object args[2];
}
+#if 0 /* Currently not used. */
+
/* Convert 16-bit value VALUE which is in big-endian byte-order
to host byte-order. */
return value;
}
+#endif /* 0 */
\f
/***********************************************************************