C
conf
long* long_pointer;
long_pointer is used to read 4 bytes each time.
Then,
short* short_pointer = [cast here]<short *>(long_pointer);
to read 2 bytes from now on.
Does this work?
What kind of C++ casting should use?
Thanks in advance!
long_pointer is used to read 4 bytes each time.
Then,
short* short_pointer = [cast here]<short *>(long_pointer);
to read 2 bytes from now on.
Does this work?
What kind of C++ casting should use?
Thanks in advance!