~ubuntu-branches/ubuntu/raring/geany/raring-proposed

« back to all changes in this revision

Viewing changes to scintilla/scintilla-marshal.c

  • Committer: Bazaar Package Importer
  • Author(s): Damián Viano
  • Date: 2009-05-29 21:22:54 UTC
  • mfrom: (1.3.1 upstream) (3.1.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: james.westby@ubuntu.com-20090529212254-cx6t2a7itgii3p5f
Tags: 0.17-1
* New upstream release
* 20_add_debdiff_as_diff_type.dpatch renamed as
  20_add_debian_specific_filetypes.dpatch, 
  - add .dpatch as a diff filetype
  - add control as a conf filetype
* 20_change_gpl_location.dpatch freshen
* add 20_debian_control_tags.dpatch better handling of debian/control files.
  Thanks to Enrico Tröger. (Closes: #520776)
* debian/copyright Add Frank Lanitz, update years

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#define g_marshal_value_peek_ulong(v)    (v)->data[0].v_ulong
36
36
#define g_marshal_value_peek_int64(v)    (v)->data[0].v_int64
37
37
#define g_marshal_value_peek_uint64(v)   (v)->data[0].v_uint64
38
 
#define g_marshal_value_peek_enum(v)     (v)->data[0].v_int
39
 
#define g_marshal_value_peek_flags(v)    (v)->data[0].v_uint
 
38
#define g_marshal_value_peek_enum(v)     (v)->data[0].v_long
 
39
#define g_marshal_value_peek_flags(v)    (v)->data[0].v_ulong
40
40
#define g_marshal_value_peek_float(v)    (v)->data[0].v_float
41
41
#define g_marshal_value_peek_double(v)   (v)->data[0].v_double
42
42
#define g_marshal_value_peek_string(v)   (v)->data[0].v_pointer
50
50
/* NONE:INT,POINTER (scintilla-marshal.list:1) */
51
51
void
52
52
scintilla_marshal_VOID__INT_POINTER (GClosure     *closure,
53
 
                                     GValue       *return_value,
 
53
                                     GValue       *return_value G_GNUC_UNUSED,
54
54
                                     guint         n_param_values,
55
55
                                     const GValue *param_values,
56
 
                                     gpointer      invocation_hint,
 
56
                                     gpointer      invocation_hint G_GNUC_UNUSED,
57
57
                                     gpointer      marshal_data)
58
58
{
59
59
  typedef void (*GMarshalFunc_VOID__INT_POINTER) (gpointer     data1,