Currently, I have:
outByte.writeInt(0x49492a00);
outByte.writeInt(0x08000000);
But i want to be able to write all of that on the same line. But:
outByte.writeLong(0x49492a0008000000)
is underlined red in Eclipse, and therefore incorrect. Is it possible to write those two lines all in one with writeLong()?