
This new version of rplay is not completely compatable
with the previous version, rplay2.0.  Old applications will
still work but they will not recompile.  Make sure you define
OLD_RPLAY in conf.h if you want to support rplay2.0 applications.

Converting rplay2.0 programs to rplay3.0 is very simple.
rplay2.0 code like:

	rp = rplay_create();
	rplay_set(rp, RPLAY_VOLUME_PLAY,
			"bogus.au",	127,
			NULL);

must be changed to:

	rp = rplay_create(RPLAY_PLAY);
	rplay_set(rp, RPLAY_APPEND,
			RPLAY_SOUND,	"bogus.au",
			RPLAY_VOLUME,	127,
			NULL);

or

	rp = rplay_create(RPLAY_PLAY);
	rplay_set(rp, RPLAY_INSERT,	0
			RPLAY_SOUND,	"bogus.au",
			RPLAY_VOLUME,	127,
			NULL);

I do plan on sticking with this new rplay library.
See README.LIBRPLAY for more information on librplay.


