Is there a way to use a pointer to a struct (NuPointer perhaps?) and, if you
know the size of the fields, extract them?
in other words
typedef struct {
int a;
double b;
} MyStruct;
to get the value b out of a (MyStruct*)?
I could create a objc class to wrap the struct, but I am resistant to this;
I think it's less clear to have a class and non-class version of the same
data structure. The original struct is in mapped memory and I would like to
keep it as simple as possible.
Thanks for your input
Elizabeth