summaryrefslogtreecommitdiff
path: root/girepository/gi-dump-types.c
blob: aeef774ce036b72ba8b94fe5c1c3ed1b7974ea23 (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
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
#include "gdump.c"
#ifdef G_OS_WIN32
  #include <windows.h>
  #include <io.h>  /* For _get_osfhandle() */
  #include <gio/gwin32outputstream.h>
#else
  #include <gio/gunixoutputstream.h>
#endif

int
main (int    argc,
      char **argv)
{
  int i;
  GOutputStream *Stdout;
  GModule *self;

#if defined(G_OS_WIN32)
  HANDLE *hnd = (HANDLE) _get_osfhandle (1);

  g_return_val_if_fail (hnd && hnd != INVALID_HANDLE_VALUE, 1);
  Stdout = g_win32_output_stream_new (hnd, FALSE);
#else
  Stdout = g_unix_output_stream_new (1, FALSE);
#endif

  self = g_module_open (NULL, 0);

  for (i = 1; i < argc; i++)
    {
      GError *error = NULL;
      GType type;

      type = invoke_get_type (self, argv[i], &error);
      if (!type)
	{
	  g_printerr ("%s\n", error->message);
	  g_clear_error (&error);
	}
      else
	dump_type (type, argv[i], Stdout);
    }

  return 0;
}