summaryrefslogtreecommitdiff
path: root/cesar/cp/beacon/test/cco/src/hle_stub.c
blob: 76add71ff42966afd21f32ded5260153d2155693 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* Cesar project {{{
 *
 * Copyright (C) 2008 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
/**
 * \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)
{
}