X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flibfirm%2Ffirm.h;h=daec83ff5b7115910483bad6d38f4b14e27a4f4e;hb=9ec98298a0bf99ccb9533365dd7245e0a380f3df;hp=1ae2fd7f7af560eb4193fb9c73a1dfa8d9cb5461;hpb=626ac303960c581cf10c759238c993834a324761;p=libfirm diff --git a/include/libfirm/firm.h b/include/libfirm/firm.h index 1ae2fd7f7..daec83ff5 100644 --- a/include/libfirm/firm.h +++ b/include/libfirm/firm.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 1995-2007 University of Karlsruhe. All right reserved. + * Copyright (C) 1995-2008 University of Karlsruhe. All right reserved. * * This file is part of libFirm. * @@ -113,11 +113,6 @@ extern "C" { #include "seqnumbers.h" /* debug support */ #include "firm_ycomp.h" /* ycomp debugging support */ - -/* @@@ temporarily for jni builder until preprocessor works. - Then it should be sufficient to include instead - of firm.h as not all enums are needed in the implementation - files. */ #include "irdump.h" #include "irprintf.h" #include "irvrfy.h" @@ -126,10 +121,6 @@ extern "C" { #include "iredges.h" -/* Macros that define the old function names we decided to rename. - Use for compatibility with old implementations. */ -/*#include "old_fctnames.h"*/ - /** * libFirm initialization parameters. */ @@ -187,14 +178,23 @@ struct _firm_parameter_t { typedef struct _firm_parameter_t firm_parameter_t; +/* Set a version number if it has not been set in environment */ +#ifndef libfirm_VERSION_MAJOR +#define libfirm_VERSION_MAJOR 1 +#endif + +#ifndef libfirm_VERSION_MINOR +#define libfirm_VERSION_MINOR 4 +#endif + /** * The Firm version number. */ typedef struct _firm_version_t { unsigned major; unsigned minor; - unsigned micro; - unsigned build; + const char *revision; + const char *build; } firm_version_t; /** @@ -221,12 +221,10 @@ void free_firm(void); */ void firm_get_version(firm_version_t *version); -#ifdef WITH_LIBCORE /** * Read initializations arguments from the .init file. */ void firm_init_options(const char *arg_prefix, int argc, const char **argv); -#endif #ifdef __cplusplus }