1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-08-13 04:34:04 +02:00
Files
.gitlab-ci
.reuse
LICENSES
docs
fuzzing
gio
girepository
cmph
compiler
decompiler
inspector
introspection
tests
gdump.c
gi-dump-types.c
giarginfo.c
giarginfo.h
gibaseinfo-private.h
gibaseinfo.c
gibaseinfo.h
gicallableinfo.c
gicallableinfo.h
gicallbackinfo.c
gicallbackinfo.h
giconstantinfo.c
giconstantinfo.h
gienuminfo.c
gienuminfo.h
gifieldinfo.c
gifieldinfo.h
giflagsinfo.c
giflagsinfo.h
gifunctioninfo.c
gifunctioninfo.h
giinterfaceinfo.c
giinterfaceinfo.h
ginvoke.c
giobjectinfo.c
giobjectinfo.h
gipropertyinfo.c
gipropertyinfo.h
giregisteredtypeinfo.c
giregisteredtypeinfo.h
girepository-autocleanups.h
girepository-private.h
girepository.c
girepository.h
girffi.c
girffi.h
girmodule-private.h
girmodule.c
girnode-private.h
girnode.c
giroffsets.c
girparser-private.h
girparser.c
girwriter-private.h
girwriter.c
gisignalinfo.c
gisignalinfo.h
gistructinfo.c
gistructinfo.h
gitypeinfo.c
gitypeinfo.h
gitypelib-internal.h
gitypelib.c
gitypelib.h
gitypes.h
giunioninfo.c
giunioninfo.h
giunresolvedinfo.c
giunresolvedinfo.h
givalueinfo.c
givalueinfo.h
givfuncinfo.c
givfuncinfo.h
gthash.c
meson.build
glib
gmodule
gobject
gthread
m4macros
po
subprojects
tests
tools
.clang-format
.dir-locals.el
.editorconfig
.gitignore
.gitlab-ci.yml
.gitmodules
.lcovrc
CODE_OF_CONDUCT.md
CONTRIBUTING.md
INSTALL.md
NEWS
README.md
SECURITY.md
glib.doap
meson.build
meson.options
glib/girepository/giconstantinfo.h

73 lines
2.3 KiB
C
Raw Normal View History

2012-02-03 13:42:56 -05:00
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
* GObject introspection: Constant
*
* Copyright (C) 2005 Matthias Clasen
* Copyright (C) 2008,2009 Red Hat, Inc.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#pragma once
#if !defined (__GIREPOSITORY_H_INSIDE__) && !defined (GI_COMPILATION)
#error "Only <girepository.h> can be included directly."
#endif
#include <girepository/gitypes.h>
G_BEGIN_DECLS
#define GI_TYPE_CONSTANT_INFO (gi_constant_info_get_type ())
/**
* GI_CONSTANT_INFO:
* @info: Info object which is subject to casting.
*
* Casts a [type@GIRepository.ConstantInfo] or derived pointer into a
* `(GIConstantInfo*)` pointer.
*
* Depending on the current debugging level, this function may invoke
* certain runtime checks to identify invalid casts.
*
* Since: 2.80
*/
#define GI_CONSTANT_INFO(info) (G_TYPE_CHECK_INSTANCE_CAST ((info), GI_TYPE_CONSTANT_INFO, GIConstantInfo))
/**
* GI_IS_CONSTANT_INFO:
* @info: an info structure
*
* Checks if @info is a [class@GIRepository.ConstantInfo] (or a derived type).
*
* Since: 2.80
*/
#define GI_IS_CONSTANT_INFO(info) (G_TYPE_CHECK_INSTANCE_TYPE ((info), GI_TYPE_CONSTANT_INFO))
GI_AVAILABLE_IN_ALL
GITypeInfo * gi_constant_info_get_type_info (GIConstantInfo *info);
GI_AVAILABLE_IN_ALL
void gi_constant_info_free_value (GIConstantInfo *info,
GIArgument *value);
GI_AVAILABLE_IN_ALL
size_t gi_constant_info_get_value (GIConstantInfo *info,
GIArgument *value);
G_END_DECLS