it's looking in the fluxamasynth.h libraries and it says byte not declared.

I am using the old libraries and I can't download the new ones
here
https://github.com/moderndevice/Fluxamasynth-Shieldoh the data.h is genrated by a midi file with midi2fluxama.pl
it will run on windows.

why do I have to rename byte to uint8_t? do i have to do this with all byte commands?

and parameters to byte, channel and other ones?
C:\arduino\arduino-1.0.3\libraries\Fluxamasynth/Fluxamasynth.h:21
:22: error: WProgram.h: No such file or directory
just found out that Wprogram.h is renamed to Arduino.h in later relesses
will this additional code work?
#if (ARDUINO >= 100)
#include <Arduino.h>
#else
#include <WProgram.h>
#endif