summaryrefslogtreecommitdiff
path: root/tests/scanner/barapp.c
blob: db4be8db1aee5232fd0e67a327a2d06bfadc580d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
#include "barapp.h"

#include <girepository.h>
#include <string.h>

G_DEFINE_TYPE(BarBaz, bar_baz, G_TYPE_OBJECT);

static void
bar_baz_class_init (BarBazClass *klass)
{
}

static void
bar_baz_init (BarBaz *object)
{
}

void
bar_app_func (void)
{
}

void
bar_app_func2 (int x, double y)
{
}

G_DEFINE_TYPE(MutterWindow, mutter_window, G_TYPE_OBJECT);

static void
mutter_window_class_init (MutterWindowClass *klass)
{
}

static void
mutter_window_init (MutterWindow *object)
{
}

void
mutter_window_func (MutterWindow *window,
		    guint         v)
{
}

int
main(int argc, char **argv)
{
  const char *prefix = "--introspect-dump=";
  GError *error = NULL;
  if (!(argc == 2 && g_str_has_prefix (argv[1], prefix)))
    {
      g_printerr ("usage: barapp --introspect-dump=types.txt,out.xml\\n");
      return 1;
    }
  g_type_init ();

  if (!g_irepository_dump (argv[1] + strlen (prefix), &error))
    {
      g_printerr ("%s\n", error->message);
      return 1;
    }
  return 0;
}