3.2" TFT LCD Touch Shield for Arduino doesnt work with due

I have added in the following code

UTFT myGLCD(ITDB32S,38,39,40,41); // Remember to change the model parameter to suit your display module!

void setup()
{
randomSeed(analogRead(0));

// Setup the LCD
myGLCD.InitLCD();
// add support to ITead shields
pinMode(38, OUTPUT);
pinMode(39, OUTPUT);
pinMode(40, OUTPUT);
pinMode(41, OUTPUT);

I get the following error:

UTFT does not name a type. I have tried various entries for the board type in place of ITDB32S with no change in the error or in the TFT behavior. I think that we do not have the type right. Anybody have any ideas?