Jack
2009-11-09 11:21:44 UTC
Hi vc gurus,
inline float myDataObject::Get_Float()
{
float *f;
float f2;
f = (float*) bstream;
f2 = *++f;
return f2;
}
PBYTE myDataObject::bstream;
I'd like to know how to make f2 coherently increments with f? Is the equal
sign a shallow copy? From my own experiments, bstream did not increment.
Any comments are welcome!
Thanks
Jack
inline float myDataObject::Get_Float()
{
float *f;
float f2;
f = (float*) bstream;
f2 = *++f;
return f2;
}
PBYTE myDataObject::bstream;
I'd like to know how to make f2 coherently increments with f? Is the equal
sign a shallow copy? From my own experiments, bstream did not increment.
Any comments are welcome!
Thanks
Jack