I'm still using ye ancient 32-bit machine with ye olde XP.
Currently I'm writing some code to add binary content to files, and I need to know, if the same code can be applied on 64-bit systems.
For example an integer variable added to a binary file with:
can be safely loaded withCode:BinaryStream.Write(SomeNumberDeclaredAsInteger)
on my system, but is this also the case on 64-bit systems or should I truncate it to Int32 before writing it to file?Code:MyInteger = BinaryStream.ReadInt32
Thanks in advance for any help with this
Tom




Reply With Quote