> The line > i = *(unsigned long *) prop->propValue; > > is probably intended like > > i = * ( (unsigned long *) (prop->propValue) ); > > Which is to say, cast the (prop->propValue) pointer to > an (unsigned long*) and de-reference it to an unsigned > long. No, it was the first thing I tried! It didn't work.Received on Thu Jul 21 08:43:47 2005