diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-09-09 02:26:30 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2010-09-09 02:32:26 +0200 |
commit | 7505e88db66798b2b8fcdff2d92a7136cd826b5b (patch) | |
tree | b6ced565318f8e8112e35cb0ad53abe4212ef8de /iup/include/iup.h | |
parent | e9a184546b18cf3b796bd560561f312934004c54 (diff) |
Upgrading to IUP 3.2 - and cleaning up.
Diffstat (limited to 'iup/include/iup.h')
-rwxr-xr-x | iup/include/iup.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/iup/include/iup.h b/iup/include/iup.h index 2d33b98..572d88c 100755 --- a/iup/include/iup.h +++ b/iup/include/iup.h @@ -21,9 +21,9 @@ extern "C" { #define IUP_NAME "IUP - Portable User Interface" #define IUP_COPYRIGHT "Copyright (C) 1994-2010 Tecgraf, PUC-Rio." #define IUP_DESCRIPTION "Portable toolkit for building graphical user interfaces." -#define IUP_VERSION "3.1" /* bug fixes are reported only by IupVersion functions */ -#define IUP_VERSION_NUMBER 301000 -#define IUP_VERSION_DATE "2010/04/22" +#define IUP_VERSION "3.2" /* bug fixes are reported only by IupVersion functions */ +#define IUP_VERSION_NUMBER 302000 +#define IUP_VERSION_DATE "2010/06/26" /* does not include bug fix releases */ typedef struct Ihandle_ Ihandle; typedef int (*Icallback)(Ihandle*); @@ -91,6 +91,7 @@ int IupGetInt2 (Ihandle* ih, const char* name); int IupGetIntInt (Ihandle *ih, const char* name, int *i1, int *i2); float IupGetFloat (Ihandle* ih, const char* name); void IupSetfAttribute (Ihandle* ih, const char* name, const char* format, ...); +void IupResetAttribute(Ihandle *ih, const char* name); int IupGetAllAttributes(Ihandle* ih, char** names, int n); Ihandle* IupSetAtt(const char* handle_name, Ihandle* ih, const char* name, ...); |