embryo: remove the need to order the header correctly for Windows.

This commit is contained in:
Cedric BAIL 2015-04-28 16:51:44 +02:00
parent e1dee32e26
commit 109dc54451
1 changed files with 7 additions and 4 deletions

View 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