summaryrefslogtreecommitdiff
path: root/iup/include
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-09-09 02:26:30 +0200
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2010-09-09 02:32:26 +0200
commit7505e88db66798b2b8fcdff2d92a7136cd826b5b (patch)
treeb6ced565318f8e8112e35cb0ad53abe4212ef8de /iup/include
parente9a184546b18cf3b796bd560561f312934004c54 (diff)
Upgrading to IUP 3.2 - and cleaning up.
Diffstat (limited to 'iup/include')
-rwxr-xr-xiup/include/iup.h7
-rwxr-xr-xiup/include/iupcbs.h1
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 */