gda-thread-wrapper.h   gda-thread-wrapper.h 
skipping to change at line 85 skipping to change at line 85
gpointer arg, G DestroyNotify arg_destroy_func, GError **error); gpointer arg, G DestroyNotify arg_destroy_func, GError **error);
gboolean gda_thread_wrapper_cancel (GdaThreadWrapp er *wrapper, guint id); gboolean gda_thread_wrapper_cancel (GdaThreadWrapp er *wrapper, guint id);
void gda_thread_wrapper_iterate (GdaThreadWrapp er *wrapper, gboolean may_block); void gda_thread_wrapper_iterate (GdaThreadWrapp er *wrapper, gboolean may_block);
gpointer gda_thread_wrapper_fetch_result (GdaThreadWrapp er *wrapper, gboolean may_lock, gpointer gda_thread_wrapper_fetch_result (GdaThreadWrapp er *wrapper, gboolean may_lock,
guint exp_id, G Error **error); guint exp_id, G Error **error);
gint gda_thread_wrapper_get_waiting_size (GdaThreadWrappe r *wrapper); gint gda_thread_wrapper_get_waiting_size (GdaThreadWrappe r *wrapper);
gulong gda_thread_wrapper_connect_raw (GdaThreadWrapp er *wrapper, gulong gda_thread_wrapper_connect_raw (GdaThreadWrapp er *wrapper,
gpointer instan ce, gpointer instan ce,
const gchar *si g_name, const gchar *si g_name, gboolean private,
GdaThreadWrappe rCallback callback, GdaThreadWrappe rCallback callback,
gpointer data); gpointer data);
void gda_thread_wrapper_disconnect (GdaThreadWrappe r *wrapper, gulong id); void gda_thread_wrapper_disconnect (GdaThreadWrappe r *wrapper, gulong id);
void gda_thread_wrapper_steal_signal (GdaThreadWrappe r *wrapper, gulong id); void gda_thread_wrapper_steal_signal (GdaThreadWrappe r *wrapper, gulong id);
G_END_DECLS G_END_DECLS
#endif #endif
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 gda-value.h   gda-value.h 
skipping to change at line 168 skipping to change at line 168
gchar *gda_binary_to_string (const GdaBinary *bi n, guint maxlen); gchar *gda_binary_to_string (const GdaBinary *bi n, guint maxlen);
GdaBinary *gda_string_to_binary (const gchar *str); GdaBinary *gda_string_to_binary (const gchar *str);
gchar *gda_blob_to_string (GdaBlob *blob, guint maxlen); gchar *gda_blob_to_string (GdaBlob *blob, guint maxlen);
GdaBlob *gda_string_to_blob (const gchar *str); GdaBlob *gda_string_to_blob (const gchar *str);
/* Custom data types */ /* Custom data types */
GType gda_numeric_get_type (void) G_GNUC_CONST; GType gda_numeric_get_type (void) G_GNUC_CONST;
gpointer gda_numeric_copy (gpointer boxed) G_GNUC_ gpointer gda_numeric_copy (gpointer boxed);
CONST; void gda_numeric_free (gpointer boxed);
void gda_numeric_free (gpointer boxed) G_GNUC_
CONST;
GType gda_time_get_type (void) G_GNUC_CONST; GType gda_time_get_type (void) G_GNUC_CONST;
gpointer gda_time_copy (gpointer boxed) G_GNUC_CON gpointer gda_time_copy (gpointer boxed);
ST; void gda_time_free (gpointer boxed);
void gda_time_free (gpointer boxed) G_GNUC_CON
ST;
GType gda_timestamp_get_type (void) G_GNUC_CONS T; GType gda_timestamp_get_type (void) G_GNUC_CONS T;
gpointer gda_timestamp_copy (gpointer boxed) G_GNU gpointer gda_timestamp_copy (gpointer boxed);
C_CONST; void gda_timestamp_free (gpointer boxed);
void gda_timestamp_free (gpointer boxed) G_GNU
C_CONST;
GType gda_geometricpoint_get_type (void) G_GNUC _CONST; GType gda_geometricpoint_get_type (void) G_GNUC _CONST;
gpointer gda_geometricpoint_copy (gpointer boxed) gpointer gda_geometricpoint_copy (gpointer boxed);
G_GNUC_CONST; void gda_geometricpoint_free (gpointer boxed);
void gda_geometricpoint_free (gpointer boxed)
G_GNUC_CONST;
GType gda_binary_get_type (void) G_GNUC_CONST; GType gda_binary_get_type (void) G_GNUC_CONST;
gpointer gda_binary_copy (gpointer boxed) G_GNUC_C gpointer gda_binary_copy (gpointer boxed);
ONST; void gda_binary_free (gpointer boxed);
void gda_binary_free (gpointer boxed) G_GNUC_C
ONST;
GType gda_blob_get_type (void) G_GNUC_CONST; GType gda_blob_get_type (void) G_GNUC_CONST;
gpointer gda_blob_copy (gpointer boxed) G_GNUC_CON gpointer gda_blob_copy (gpointer boxed);
ST; void gda_blob_free (gpointer boxed);
void gda_blob_free (gpointer boxed) G_GNUC_CON
ST;
void gda_blob_set_op (GdaBlob *blob, GdaBlobOp *op); void gda_blob_set_op (GdaBlob *blob, GdaBlobOp *op);
GType gda_value_list_get_type (void) G_GNUC_CON ST; GType gda_value_list_get_type (void) G_GNUC_CON ST;
GType gda_short_get_type (void) G_GNUC_CONST; GType gda_short_get_type (void) G_GNUC_CONST;
GType gda_ushort_get_type (void) G_GNUC_CONST; GType gda_ushort_get_type (void) G_GNUC_CONST;
/* Helper macros */ /* Helper macros */
#define gda_value_new_null() (g_new0 (GValue, 1)) #define gda_value_new_null() (g_new0 (GValue, 1))
G_END_DECLS G_END_DECLS
 End of changes. 6 change blocks. 
24 lines changed or deleted 12 lines changed or added


 gdaui-easy.h   gdaui-easy.h 
skipping to change at line 31 skipping to change at line 31
*/ */
#ifndef __GDAUI_EASY_H__ #ifndef __GDAUI_EASY_H__
#define __GDAUI_EASY_H__ #define __GDAUI_EASY_H__
#include <libgda-ui/gdaui-data-entry.h> #include <libgda-ui/gdaui-data-entry.h>
G_BEGIN_DECLS G_BEGIN_DECLS
GdauiDataEntry *gdaui_new_data_entry (GType type, const gchar *plugin_n ame); GdauiDataEntry *gdaui_new_data_entry (GType type, const gchar *plugin_n ame);
GtkCellRenderer *gdaui_new_cell_renderer (GType type, const gchar *plugin_n ame); GtkCellRenderer *_gdaui_new_cell_renderer (GType type, const gchar *plugin_ name);
G_END_DECLS G_END_DECLS
#endif #endif
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 gdaui-set.h   gdaui-set.h 
skipping to change at line 45 skipping to change at line 45
typedef struct _GdauiSetClass GdauiSetClass; typedef struct _GdauiSetClass GdauiSetClass;
typedef struct _GdauiSetPriv GdauiSetPriv; typedef struct _GdauiSetPriv GdauiSetPriv;
typedef struct _GdauiSetGroup GdauiSetGroup; typedef struct _GdauiSetGroup GdauiSetGroup;
typedef struct _GdauiSetSource GdauiSetSource; typedef struct _GdauiSetSource GdauiSetSource;
struct _GdauiSetGroup { struct _GdauiSetGroup {
GdaSetGroup *group; GdaSetGroup *group;
GdauiSetSource *source; /* if NULL, then @group->nodes contains exa ctly one entry */ GdauiSetSource *source; /* if NULL, then @group->nodes contains exa ctly one entry */
/*< private >*/
/* Padding for future expansion */ /* Padding for future expansion */
gpointer _gda_reserved1; gpointer _gda_reserved1;
gpointer _gda_reserved2; gpointer _gda_reserved2;
}; };
#define GDAUI_SET_GROUP(x) ((GdauiSetGroup*)(x)) #define GDAUI_SET_GROUP(x) ((GdauiSetGroup*)(x))
struct _GdauiSetSource { struct _GdauiSetSource {
GdaSetSource *source; GdaSetSource *source;
/* displayed columns in 'source->data_model' */ /* displayed columns in 'source->data_model' */
gint shown_n_cols; gint shown_n_cols;
gint *shown_cols_index; gint *shown_cols_index;
/* columns used as a reference (corresponding to PK values) in 'sour ce->data_model' */ /* columns used as a reference (corresponding to PK values) in 'sour ce->data_model' */
gint ref_n_cols; gint ref_n_cols;
gint *ref_cols_index; gint *ref_cols_index;
/*< private >*/
/* Padding for future expansion */ /* Padding for future expansion */
gpointer _gda_reserved1; gpointer _gda_reserved1;
gpointer _gda_reserved2; gpointer _gda_reserved2;
gpointer _gda_reserved3; gpointer _gda_reserved3;
gpointer _gda_reserved4; gpointer _gda_reserved4;
}; };
#define GDAUI_SET_SOURCE(x) ((GdauiSetSource*)(x)) #define GDAUI_SET_SOURCE(x) ((GdauiSetSource*)(x))
/* struct for the object's data */ /* struct for the object's data */
 End of changes. 2 change blocks. 
0 lines changed or deleted 2 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/