Embryo.h | Embryo.h | |||
---|---|---|---|---|
/** | /** | |||
@brief Embryo Library | @brief Embryo Library | |||
These routines are used for Embryo. | These routines are used for Embryo. | |||
@mainpage Embryo Library Documentation | @mainpage Embryo Library Documentation | |||
@image html e_big.png | @image html e_big.png | |||
@version 1.0.0 | @version 1.7.0 | |||
@author Carsten Haitzler <raster\@rasterman.com> | @author Carsten Haitzler <raster\@rasterman.com> | |||
@author Compuphase http://www.compuphase.com | @author Compuphase http://www.compuphase.com | |||
@date 2004-2012 | @date 2004-2012 | |||
@section intro What is Embryo? | @section intro What is Embryo? | |||
Embryo is a tiny library designed to interpret limited Small programs | Embryo is a tiny library designed to interpret limited Small programs | |||
compiled by the included compiler, @c embryo_cc. It is mostly a cleaned | compiled by the included compiler, @c embryo_cc. It is mostly a cleaned | |||
up and smaller version of the original Small abstract machine. The | up and smaller version of the original Small abstract machine. The | |||
compiler is mostly untouched. | compiler is mostly untouched. | |||
skipping to change at line 341 | skipping to change at line 341 | |||
# else | # else | |||
# define EAPI | # define EAPI | |||
# endif | # endif | |||
#endif /* ! _WIN32 */ | #endif /* ! _WIN32 */ | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
extern "C" { | extern "C" { | |||
#endif | #endif | |||
#define EMBRYO_VERSION_MAJOR 1 | #define EMBRYO_VERSION_MAJOR 1 | |||
#define EMBRYO_VERSION_MINOR 2 | #define EMBRYO_VERSION_MINOR 7 | |||
typedef struct _Embryo_Version | typedef struct _Embryo_Version | |||
{ | { | |||
int major; | int major; | |||
int minor; | int minor; | |||
int micro; | int micro; | |||
int revision; | int revision; | |||
} Embryo_Version; | } Embryo_Version; | |||
EAPI extern Embryo_Version *embryo_version; | EAPI extern Embryo_Version *embryo_version; | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||