summaryrefslogtreecommitdiff
path: root/drivers/staging/nmf-cm/ee/api/ee_type.h
blob: 368cd6d29ba59c98046afb552bafd71ef0b6aea5 (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
/*
 * Copyright (C) ST-Ericsson SA 2010. All rights reserved.
 * This code is ST-Ericsson proprietary and confidential.
 * Any use of the code for whatever purpose is subject to
 * specific written permission of ST-Ericsson SA.
 */
 
#ifndef HOST_EE_TYPE_H
#define HOST_EE_TYPE_H

/*!
 * \brief Notify callback method type.
 *
 * \ingroup HOSTEE
 */
typedef void (*t_nmf_notify)(void *contextHandler);

/*!
 * \brief Definition of the command ID type
 */
typedef t_uint32 t_ee_cmd_id;

/*!
 * \brief Definition of the command ID
 */
typedef enum {
    EE_CMD_TRACE_ON,                //!< Enable tracing and force network resetting and dumping
    EE_CMD_TRACE_OFF                //!< Disable tracing
} t_ee_cmd_idDescription;


#endif