+2005-01-28 Hans-Peter Nilsson <hp@axis.com>
+
+ * callback.h: Include "bfd.h".
+ (struct host_callback_struct): New member target_endian.
+ (cb_store_target_endian): Declare.
+
2004-12-15 Hans-Peter Nilsson <hp@axis.com>
* callback.h (CB_SYS_truncate, CB_SYS_ftruncate): New macros.
#include <varargs.h>
#endif
#endif
+/* Needed for enum bfd_endian. */
+#include "bfd.h"
\f
/* Mapping of host/target values. */
/* ??? For debugging purposes, one might want to add a string of the
Example: "st_dev,4:st_ino,4:st_mode,4:..." */
const char *stat_map;
+ enum bfd_endian target_endian;
+
/* Marker for those wanting to do sanity checks.
This should remain the last member of this struct to help catch
miscompilation errors. */
Result is size of target stat struct or 0 if error. */
int cb_host_to_target_stat PARAMS ((host_callback *, const struct stat *, PTR));
+/* Translate a value to target endian. */
+void cb_store_target_endian PARAMS ((host_callback *, char *, int, long));
+
/* Perform a system call. */
CB_RC cb_syscall PARAMS ((host_callback *, CB_SYSCALL *));