in many library packages you find at the top the construct:
#if (ARDUINO >= 100)
#include <Arduino.h>
#else
#include <WProgram.h>
#include <pins_arduino.h>
#endif
Replacing the <Arduino.h> by #include "wirish.h" will not solve the problem.
all definitions like uint16_t are still missing.
What is the preferred way to handle this ?
Thanks
Floris