Sha256: 9ad935d2debfc652055e98884d7c7c43a741040641a54d382983f6802088bf89

Contents?: true

Size: 1.11 KB

Versions: 6

Compression:

Stored size: 1.11 KB

Contents

/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
#include "drawable.h"

G_DEFINE_ABSTRACT_TYPE (RegressTestInheritDrawable, regress_test_inherit_drawable, G_TYPE_OBJECT);

static void
regress_test_inherit_drawable_class_init (RegressTestInheritDrawableClass *klass)
{

}

static void
regress_test_inherit_drawable_init (RegressTestInheritDrawable *drawable)
{

}

void
regress_test_inherit_drawable_do_foo (RegressTestInheritDrawable *drawable, int x)
{

}

/**
 * regress_test_inherit_drawable_get_origin:
 * @drawable:
 * @x: (out):
 * @y: (out):
 */
void
regress_test_inherit_drawable_get_origin (RegressTestInheritDrawable *drawable, int *x, int *y)
{
  *x = 0;
  *y = 0;
}

/**
 * regress_test_inherit_drawable_get_size:
 * @drawable:
 * @width: (out):
 * @height: (out):
 */
void
regress_test_inherit_drawable_get_size (RegressTestInheritDrawable *drawable, guint *width, guint *height)
{
  *width = 42;
  *height = 42;
}

void
regress_test_inherit_drawable_do_foo_maybe_throw (RegressTestInheritDrawable *drawable, int x, GError **error)
{
  if (x != 42)
    g_set_error(error, 0, 12, "The answer should be 42!");
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
gobject-introspection-2.2.0-x86-mingw32 vendor/local/share/gobject-introspection-1.0/tests/drawable.c
gobject-introspection-2.1.0-x86-mingw32 vendor/local/share/gobject-introspection-1.0/tests/drawable.c
gobject-introspection-2.0.3-x86-mingw32 vendor/local/share/gobject-introspection-1.0/tests/drawable.c
gobject-introspection-2.0.2-x86-mingw32 vendor/local/share/gobject-introspection-1.0/tests/drawable.c
gobject-introspection-2.0.1-x86-mingw32 vendor/local/share/gobject-introspection-1.0/tests/drawable.c
gobject-introspection-2.0.0-x86-mingw32 vendor/local/share/gobject-introspection-1.0/tests/drawable.c