diff options
Diffstat (limited to 'iup/include')
-rwxr-xr-x | iup/include/iup.h | 7 | ||||
-rwxr-xr-x | iup/include/iupcbs.h | 1 |
2 files changed, 5 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, ...); diff --git a/iup/include/iupcbs.h b/iup/include/iupcbs.h index 70d117f..94be8b8 100755 --- a/iup/include/iupcbs.h +++ b/iup/include/iupcbs.h @@ -24,6 +24,7 @@ typedef int (*IFnnii)(Ihandle*, Ihandle*, int, int); /* drop_cb */ typedef int (*IFnnn)(Ihandle*, Ihandle*, Ihandle*); /* tabchange_cb */ typedef int (*IFnss)(Ihandle*, char *, char *); /* file_cb */ typedef int (*IFns)(Ihandle*, char *); /* multiselect_cb */ +typedef int (*IFnsi)(Ihandle*, char *, int); /* copydata_cb */ typedef int (*IFnis)(Ihandle*, int, char *); /* text_action, multiline_action, edit_cb, rename_cb */ typedef int (*IFnsii)(Ihandle*, char*, int, int); /* list_action */ typedef int (*IFnsiii)(Ihandle*, char*, int, int, int); /* dropfiles_cb */ |