summaryrefslogtreecommitdiff
path: root/drivers/staging/nmf-cm/ee/api/ee_type.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/nmf-cm/ee/api/ee_type.h')
-rw-r--r--drivers/staging/nmf-cm/ee/api/ee_type.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/drivers/staging/nmf-cm/ee/api/ee_type.h b/drivers/staging/nmf-cm/ee/api/ee_type.h
new file mode 100644
index 00000000000..368cd6d29ba
--- /dev/null
+++ b/drivers/staging/nmf-cm/ee/api/ee_type.h
@@ -0,0 +1,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