noob: Shield w/ spfd5408 controller 240x320 - I don't know which library

just checked my eMail and i got the same link.

So now I am quickly copying the 3 subs of the lib dir in the lib dir of my arduino-1.0.1.

I when I try both test PDEs I get an error in TFTLCD.h:

In file included from graphicstest_pde.cpp:1:
TFTLCD.h:64: error: expected class-name before '{' token
TFTLCD.h:66: error: expected `)' before 'cs'
TFTLCD.h:68: error: 'uint16_t' does not name a type
TFTLCD.h:71: error: 'uint16_t' has not been declared
...

...
#define TFTLCD_PANEL_IF_CTRL5		0x97
#define TFTLCD_PANEL_IF_CTRL6		0x98

#define TFTLCD_DELAYCMD                 0xFF

#define swap(a, b) { int16_t t = a; a = b; b = t; }
//  <- this is line 64
class TFTLCD : public Print {
 public:
  TFTLCD(uint8_t cs, uint8_t cd, uint8_t wr, uint8_t rd, uint8_t reset);

  uint16_t Color565(uint8_t r, uint8_t g, uint8_t b);
...

I also wonder why the copies of the lib-h-files are in the pde folder. Shouldn't it be sufficient if they are in the lib folder?