X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Flibfirm%2Ffirm.h;h=194b8538f110b4ab4af196194209946cf27780c2;hb=83811ec18bcb88ff5a45c8b10303636d34bf67ee;hp=9c1b829f65251d24adda8661039fc55c9b4f529e;hpb=23e58027c230fed148f7acc07a890b5a54e6e8e8;p=libfirm diff --git a/include/libfirm/firm.h b/include/libfirm/firm.h index 9c1b829f6..194b8538f 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. * @@ -196,19 +196,14 @@ typedef struct _firm_parameter_t firm_parameter_t; #define libfirm_VERSION_MINOR 4 #endif -#ifndef libfirm_VERSION_MICRO -#define libfirm_VERSION_MICRO 0 -#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; /** @@ -235,12 +230,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 }