2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 Desc: Write a big endian byte from a streamhook
11 /******************************************************************************
15 #include <aros/bigendianio.h>
16 #include <proto/alib.h>
26 Writes one big endian 8bit value to a streamhook.
29 hook - Write to this streamhook
30 data - Data to be written
31 stream - Stream passed to streamhook
34 The function returns TRUE on success and FALSE otherwise.
35 See IoErr() for the reason in case of an error.
38 This function writes big endian values to a file even on little
46 ReadByte(), ReadWord(), ReadLong(), ReadFloat(), ReadDouble(),
47 ReadString(), ReadStruct(), WriteByte(), WriteWord(), WriteLong(),
48 WriteFloat(), WriteDouble(), WriteString(), WriteStruct()
52 ******************************************************************************/
54 struct BEIOM_Write wr
= {BEIO_WRITE
, data
};
55 return (CallHookA (hook
, stream
, &wr
) != EOF
);