The Ruby Fiddle Module has a bunch of constants to represent C data types (eg Fiddle::TYPE_INT == 4), but how do you represent pointer datatypes?
The Ruby doc for Fiddle only has Fiddle::TYPE_VOIDP for representing C pointer data types, but nothing for char* or int* or unsigned int*. How do you represent these data types in Fiddle?