diff nuc-fw/riviera/rvm/rvm_api.h @ 119:dd56546ad9e0

starting to compile RVF
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Wed, 30 Oct 2013 23:19:21 +0000
parents 21de8d8e6ea7
children
line wrap: on
line diff
--- a/nuc-fw/riviera/rvm/rvm_api.h	Tue Oct 29 07:03:45 2013 +0000
+++ b/nuc-fw/riviera/rvm/rvm_api.h	Wed Oct 30 23:19:21 2013 +0000
@@ -22,7 +22,7 @@
 #ifndef __RVM_API_H_
 #define __RVM_API_H_
 
-#include "rv/rv_general.h"
+#include "../rv/rv_general.h"
 //#include "rvf_i.h"
 
 
@@ -47,11 +47,11 @@
 
 
 /* RVM return parameters definition */
-#define	RVM_OK					RV_OK				
-#define	RVM_NOT_SUPPORTED		RV_NOT_SUPPORTED		
-#define	RVM_NOT_READY			RV_NOT_READY			
-#define	RVM_MEMORY_ERR			RV_MEMORY_ERR			
-#define	RVM_INTERNAL_ERR		RV_INTERNAL_ERR		
+#define	RVM_OK			RV_OK				
+#define	RVM_NOT_SUPPORTED	RV_NOT_SUPPORTED		
+#define	RVM_NOT_READY		RV_NOT_READY			
+#define	RVM_MEMORY_ERR		RV_MEMORY_ERR			
+#define	RVM_INTERNAL_ERR	RV_INTERNAL_ERR		
 #define	RVM_INVALID_PARAMETER	RV_INVALID_PARAMETER	
 
 
@@ -90,11 +90,11 @@
 /* structure of RVM returned message to appli */
 typedef struct
 {
-	T_RV_HDR			header;		// event field will be RVM_EVT_TO_APPLI
+	T_RV_HDR		header;		// event field will be RVM_EVT_TO_APPLI
 	T_RV_RETURN_PATH	rp;
 	T_RVM_APPLI_ACTION	action;		// Indicates if the result is coming from a rvm_start or a rvm_stop function call
-	T_RVM_NAME			swe_name;	// Name of the SW entity
-	UINT8				swe_index;	// Number of the SW entity
+	T_RVM_NAME		swe_name;	// Name of the SW entity
+	UINT8			swe_index;	// Number of the SW entity
 	T_RVM_RETURN		result;
 } T_RVM_APPLI_RESULT;
 
@@ -106,7 +106,7 @@
 /***************************************/
 
 /* enable init at boot up   */
-BOOLEAN			rvm_init(void);
+BOOLEAN		rvm_init(void);
 /* launch the creation process to start the specified SWE */
 T_RVM_RETURN	rvm_start_swe( T_RVM_USE_ID swe_id, T_RV_RETURN_PATH return_path);