embryo: remove the need to order the header correctly for Windows.
authorCedric BAIL <cedric@osg.samsung.com>
Tue, 28 Apr 2015 14:51:44 +0000 (16:51 +0200)
committerCedric BAIL <cedric@osg.samsung.com>
Thu, 7 May 2015 07:53:10 +0000 (09:53 +0200)
src/lib/embryo/Embryo.h

index 413c38b..fc358ef 100644 (file)
@@ -885,7 +885,7 @@ EAPI Embryo_Cell      embryo_program_return_value_get(Embryo_Program *ep);
  * @ingroup Embryo_Run_Group
  */
 EAPI void             embryo_program_max_cycle_run_set(Embryo_Program *ep, int max);
-   
+
 /**
  * Retreives the maximum number of abstract machine cycles a program is allowed
  * to run.
@@ -899,7 +899,7 @@ EAPI void             embryo_program_max_cycle_run_set(Embryo_Program *ep, int m
  * @ingroup Embryo_Run_Group
  */
 EAPI int              embryo_program_max_cycle_run_get(Embryo_Program *ep);
-   
+
 /**
  * Pushes an Embryo_Cell onto the function stack to use as a parameter for
  * the next function that is called in the given program.
@@ -916,7 +916,7 @@ EAPI int              embryo_program_max_cycle_run_get(Embryo_Program *ep);
  * Functions that set parameters for the next function that is called.
  */
 EAPI int              embryo_parameter_cell_push(Embryo_Program *ep, Embryo_Cell cell);
-   
+
 /**
  * Pushes a string onto the function stack to use as a parameter for the
  * next function that is called in the given program.
@@ -926,7 +926,7 @@ EAPI int              embryo_parameter_cell_push(Embryo_Program *ep, Embryo_Cell
  * @ingroup Embryo_Parameter_Group
  */
 EAPI int              embryo_parameter_string_push(Embryo_Program *ep, const char *str);
-   
+
 /**
  * Pushes an array of Embryo_Cells onto the function stack to be used as
  * parameters for the next function that is called in the given program.
@@ -942,4 +942,7 @@ EAPI int              embryo_parameter_cell_array_push(Embryo_Program *ep, Embry
 }
 #endif
 
+#undef EAPI
+#define EAPI
+
 #endif