/* Cesar project {{{ * * Copyright (C) 2008 Spidcom * * <<>> * * }}} */ /** * \file src/hle_stub.c * \brief « brief description » * \ingroup « module » * * « long description » */ #include "common/std.h" #include "hle/hle.h" /** * Initialise the interface to add an Interface buffer. * * \param ctx the hle context. * \param cb the function to call on interface buffer reception. * \param user_data the user_data to provide on function call. */ void hle_init_interface_buffer_add_cb (hle_t *ctx, hle_interface_buffer_add_cb_t cb, void *user_data) { } /** * Send a packet to the ipmbox. * * \param ctx the hle context. * \param msg the message address to post the message in the ipmbox. * \param length the length of the message in words. */ void hle_ipmbox_send (hle_t *ctx, u32 *msg, uint length) { }