~ubuntu-branches/ubuntu/trusty/gobject-introspection/trusty

« back to all changes in this revision

Viewing changes to girepository/gitypeinfo.h

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2011-03-22 00:32:36 UTC
  • mfrom: (1.4.1 upstream) (3.3.33 multiarch)
  • Revision ID: james.westby@ubuntu.com-20110322003236-4spdgfk1vai6xay1
Tags: 0.10.4-2
Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* GObject introspection: Type
 
2
 *
 
3
 * Copyright (C) 2005 Matthias Clasen
 
4
 * Copyright (C) 2008,2009 Red Hat, Inc.
 
5
 *
 
6
 * This library is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU Lesser General Public
 
8
 * License as published by the Free Software Foundation; either
 
9
 * version 2 of the License, or (at your option) any later version.
 
10
 *
 
11
 * This library is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
 * Lesser General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Lesser General Public
 
17
 * License along with this library; if not, write to the
 
18
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
19
 * Boston, MA 02111-1307, USA.
 
20
 */
 
21
 
 
22
#ifndef __GITYPEINFO_H__
 
23
#define __GITYPEINFO_H__
 
24
 
 
25
#if !defined (__GIREPOSITORY_H_INSIDE__) && !defined (GI_COMPILATION)
 
26
#error "Only <girepository.h> can be included directly."
 
27
#endif
 
28
 
 
29
#include <gitypes.h>
 
30
 
 
31
G_BEGIN_DECLS
 
32
 
 
33
#define GI_IS_TYPE_INFO(info) \
 
34
    (g_base_info_get_type((GIBaseInfo*)info) ==  GI_INFO_TYPE_TYPE)
 
35
 
 
36
#define G_TYPE_TAG_IS_BASIC(tag) (tag < GI_TYPE_TAG_ARRAY || tag == GI_TYPE_TAG_UNICHAR)
 
37
 
 
38
const gchar*           g_type_tag_to_string            (GITypeTag   type);
 
39
const gchar*           g_info_type_to_string           (GIInfoType  type);
 
40
 
 
41
gboolean               g_type_info_is_pointer          (GITypeInfo *info);
 
42
GITypeTag              g_type_info_get_tag             (GITypeInfo *info);
 
43
GITypeInfo *           g_type_info_get_param_type      (GITypeInfo *info,
 
44
                                                        gint       n);
 
45
GIBaseInfo *           g_type_info_get_interface       (GITypeInfo *info);
 
46
gint                   g_type_info_get_array_length    (GITypeInfo *info);
 
47
gint                   g_type_info_get_array_fixed_size(GITypeInfo *info);
 
48
gboolean               g_type_info_is_zero_terminated  (GITypeInfo *info);
 
49
GIArrayType            g_type_info_get_array_type      (GITypeInfo *info);
 
50
 
 
51
gint                   g_type_info_get_n_error_domains (GITypeInfo *info);
 
52
GIErrorDomainInfo     *g_type_info_get_error_domain    (GITypeInfo *info,
 
53
                                                        gint       n);
 
54
G_END_DECLS
 
55
 
 
56
 
 
57
#endif  /* __GITYPEINFO_H__ */
 
58