2012-02-03 19:42:56 +01:00
|
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*-
|
|
|
|
|
* GObject introspection: Argument implementation
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2005 Matthias Clasen
|
|
|
|
|
* Copyright (C) 2008,2009 Red Hat, Inc.
|
|
|
|
|
*
|
2023-10-25 18:10:10 +02:00
|
|
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
|
*
|
2010-06-05 17:40:15 +02:00
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2014-07-04 12:27:41 +02:00
|
|
|
|
#include "config.h"
|
|
|
|
|
|
2010-06-05 17:40:15 +02:00
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
2023-11-28 18:24:20 +01:00
|
|
|
|
#include "gibaseinfo-private.h"
|
2010-06-05 17:40:15 +02:00
|
|
|
|
#include "gitypelib-internal.h"
|
|
|
|
|
#include "girepository-private.h"
|
2023-10-25 19:11:38 +02:00
|
|
|
|
#include "giarginfo.h"
|
2010-06-05 17:40:15 +02:00
|
|
|
|
|
|
|
|
|
|
2013-10-10 22:21:18 +02:00
|
|
|
|
/* GIArgInfo functions */
|
2010-06-05 17:40:15 +02:00
|
|
|
|
|
|
|
|
|
/**
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* GIArgInfo:
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* `GIArgInfo` represents an argument of a callable.
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* An argument is always part of a [class@GIRepository.CallableInfo].
|
|
|
|
|
*
|
|
|
|
|
* Since: 2.80
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_arg_info_get_direction:
|
2010-06-05 17:40:15 +02:00
|
|
|
|
* @info: a #GIArgInfo
|
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Obtain the direction of the argument. Check [type@GIRepository.Direction]
|
|
|
|
|
* for possible direction values.
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Returns: The direction
|
|
|
|
|
* Since: 2.80
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*/
|
|
|
|
|
GIDirection
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_arg_info_get_direction (GIArgInfo *info)
|
2010-06-05 17:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
|
ArgBlob *blob;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, -1);
|
|
|
|
|
g_return_val_if_fail (GI_IS_ARG_INFO (info), -1);
|
|
|
|
|
|
|
|
|
|
blob = (ArgBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
|
|
if (blob->in && blob->out)
|
|
|
|
|
return GI_DIRECTION_INOUT;
|
|
|
|
|
else if (blob->out)
|
|
|
|
|
return GI_DIRECTION_OUT;
|
|
|
|
|
else
|
|
|
|
|
return GI_DIRECTION_IN;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_arg_info_is_return_value:
|
2010-06-05 17:40:15 +02:00
|
|
|
|
* @info: a #GIArgInfo
|
|
|
|
|
*
|
|
|
|
|
* Obtain if the argument is a return value. It can either be a
|
|
|
|
|
* parameter or a return value.
|
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Returns: `TRUE` if it is a return value
|
|
|
|
|
* Since: 2.80
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*/
|
|
|
|
|
gboolean
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_arg_info_is_return_value (GIArgInfo *info)
|
2010-06-05 17:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
|
ArgBlob *blob;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, FALSE);
|
|
|
|
|
g_return_val_if_fail (GI_IS_ARG_INFO (info), FALSE);
|
|
|
|
|
|
|
|
|
|
blob = (ArgBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
|
|
return blob->return_value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_arg_info_is_caller_allocates:
|
2010-06-05 17:40:15 +02:00
|
|
|
|
* @info: a #GIArgInfo
|
|
|
|
|
*
|
|
|
|
|
* Obtain if the argument is a pointer to a struct or object that will
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* receive an output of a function.
|
|
|
|
|
*
|
|
|
|
|
* The default assumption for `GI_DIRECTION_OUT` arguments which have allocation
|
|
|
|
|
* is that the callee allocates; if this is `TRUE`, then the caller must
|
|
|
|
|
* allocate.
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Returns: `TRUE` if caller is required to have allocated the argument
|
|
|
|
|
* Since: 2.80
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*/
|
|
|
|
|
gboolean
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_arg_info_is_caller_allocates (GIArgInfo *info)
|
2010-06-05 17:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
|
ArgBlob *blob;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, FALSE);
|
|
|
|
|
g_return_val_if_fail (GI_IS_ARG_INFO (info), FALSE);
|
|
|
|
|
|
|
|
|
|
blob = (ArgBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
|
|
return blob->caller_allocates;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_arg_info_is_optional:
|
2010-06-05 17:40:15 +02:00
|
|
|
|
* @info: a #GIArgInfo
|
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Obtain if the argument is optional.
|
|
|
|
|
*
|
|
|
|
|
* For ‘out’ arguments this means that you can pass `NULL` in order to ignore
|
|
|
|
|
* the result.
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Returns: `TRUE` if it is an optional argument
|
|
|
|
|
* Since: 2.80
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*/
|
|
|
|
|
gboolean
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_arg_info_is_optional (GIArgInfo *info)
|
2010-06-05 17:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
|
ArgBlob *blob;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, FALSE);
|
|
|
|
|
g_return_val_if_fail (GI_IS_ARG_INFO (info), FALSE);
|
|
|
|
|
|
|
|
|
|
blob = (ArgBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
|
|
return blob->optional;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_arg_info_may_be_null:
|
2010-06-05 17:40:15 +02:00
|
|
|
|
* @info: a #GIArgInfo
|
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Obtain if the type of the argument includes the possibility of `NULL`.
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* For ‘in’ values this means that `NULL` is a valid value. For ‘out’
|
|
|
|
|
* values, this means that `NULL` may be returned.
|
2014-05-14 20:56:58 +02:00
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* See also [method@GIRepository.ArgInfo.is_optional].
|
|
|
|
|
*
|
|
|
|
|
* Returns: `TRUE` if the value may be `NULL`
|
|
|
|
|
* Since: 2.80
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*/
|
|
|
|
|
gboolean
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_arg_info_may_be_null (GIArgInfo *info)
|
2010-06-05 17:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
|
ArgBlob *blob;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, FALSE);
|
|
|
|
|
g_return_val_if_fail (GI_IS_ARG_INFO (info), FALSE);
|
|
|
|
|
|
|
|
|
|
blob = (ArgBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
2014-04-16 17:33:36 +02:00
|
|
|
|
return blob->nullable;
|
2010-06-05 17:40:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-05-13 18:20:05 +02:00
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_arg_info_is_skip:
|
2011-05-13 18:20:05 +02:00
|
|
|
|
* @info: a #GIArgInfo
|
|
|
|
|
*
|
|
|
|
|
* Obtain if an argument is only useful in C.
|
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Returns: `TRUE` if argument is only useful in C.
|
2023-11-09 00:24:11 +01:00
|
|
|
|
* Since: 2.80
|
2011-05-13 18:20:05 +02:00
|
|
|
|
*/
|
|
|
|
|
gboolean
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_arg_info_is_skip (GIArgInfo *info)
|
2011-05-13 18:20:05 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
|
ArgBlob *blob;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, FALSE);
|
|
|
|
|
g_return_val_if_fail (GI_IS_ARG_INFO (info), FALSE);
|
|
|
|
|
|
|
|
|
|
blob = (ArgBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
|
|
return blob->skip;
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-05 17:40:15 +02:00
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_arg_info_get_ownership_transfer:
|
2010-06-05 17:40:15 +02:00
|
|
|
|
* @info: a #GIArgInfo
|
|
|
|
|
*
|
|
|
|
|
* Obtain the ownership transfer for this argument.
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* [type@GIRepository.Transfer] contains a list of possible values.
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Returns: The transfer
|
|
|
|
|
* Since: 2.80
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*/
|
|
|
|
|
GITransfer
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_arg_info_get_ownership_transfer (GIArgInfo *info)
|
2010-06-05 17:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
|
ArgBlob *blob;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, -1);
|
|
|
|
|
g_return_val_if_fail (GI_IS_ARG_INFO (info), -1);
|
|
|
|
|
|
|
|
|
|
blob = (ArgBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
|
|
if (blob->transfer_ownership)
|
|
|
|
|
return GI_TRANSFER_EVERYTHING;
|
|
|
|
|
else if (blob->transfer_container_ownership)
|
|
|
|
|
return GI_TRANSFER_CONTAINER;
|
|
|
|
|
else
|
|
|
|
|
return GI_TRANSFER_NOTHING;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-08 15:17:52 +01:00
|
|
|
|
* gi_arg_info_get_scope:
|
2010-06-05 17:40:15 +02:00
|
|
|
|
* @info: a #GIArgInfo
|
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Obtain the scope type for this argument.
|
|
|
|
|
*
|
|
|
|
|
* The scope type explains how a callback is going to be invoked, most
|
|
|
|
|
* importantly when the resources required to invoke it can be freed.
|
|
|
|
|
*
|
|
|
|
|
* [type@GIRepository.ScopeType] contains a list of possible values.
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Returns: The scope type
|
|
|
|
|
* Since: 2.80
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*/
|
|
|
|
|
GIScopeType
|
2023-11-08 15:17:52 +01:00
|
|
|
|
gi_arg_info_get_scope (GIArgInfo *info)
|
2010-06-05 17:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
|
ArgBlob *blob;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, -1);
|
|
|
|
|
g_return_val_if_fail (GI_IS_ARG_INFO (info), -1);
|
|
|
|
|
|
|
|
|
|
blob = (ArgBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
|
|
|
|
return blob->scope;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-12-12 18:33:49 +01:00
|
|
|
|
* gi_arg_info_get_closure_index:
|
2010-06-05 17:40:15 +02:00
|
|
|
|
* @info: a #GIArgInfo
|
2024-01-17 11:36:45 +01:00
|
|
|
|
* @out_closure_index: (out) (optional): return location for the closure index
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*
|
|
|
|
|
* Obtain the index of the user data argument. This is only valid
|
|
|
|
|
* for arguments which are callbacks.
|
|
|
|
|
*
|
2024-01-17 11:36:45 +01:00
|
|
|
|
* Returns: `TRUE` if the argument has a user data argument
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Since: 2.80
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*/
|
2024-01-17 11:36:45 +01:00
|
|
|
|
gboolean
|
|
|
|
|
gi_arg_info_get_closure_index (GIArgInfo *info,
|
|
|
|
|
unsigned int *out_closure_index)
|
2010-06-05 17:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
|
ArgBlob *blob;
|
2024-01-17 11:36:45 +01:00
|
|
|
|
gboolean has_closure_index;
|
2010-06-05 17:40:15 +02:00
|
|
|
|
|
2024-01-17 11:36:45 +01:00
|
|
|
|
g_return_val_if_fail (info != NULL, FALSE);
|
|
|
|
|
g_return_val_if_fail (GI_IS_ARG_INFO (info), FALSE);
|
2010-06-05 17:40:15 +02:00
|
|
|
|
|
|
|
|
|
blob = (ArgBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
2024-01-17 11:36:45 +01:00
|
|
|
|
has_closure_index = (blob->closure >= 0);
|
|
|
|
|
|
|
|
|
|
if (out_closure_index != NULL)
|
|
|
|
|
*out_closure_index = has_closure_index ? blob->closure : 0;
|
|
|
|
|
return has_closure_index;
|
2010-06-05 17:40:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-12-12 18:33:49 +01:00
|
|
|
|
* gi_arg_info_get_destroy_index:
|
2010-06-05 17:40:15 +02:00
|
|
|
|
* @info: a #GIArgInfo
|
2024-01-17 11:36:45 +01:00
|
|
|
|
* @out_destroy_index: (out) (optional): return location for the destroy index
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Obtains the index of the [type@GLib.DestroyNotify] argument. This is only
|
|
|
|
|
* valid for arguments which are callbacks.
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*
|
2024-01-17 11:36:45 +01:00
|
|
|
|
* Returns: `TRUE` if the argument has a [type@GLib.DestroyNotify] argument
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Since: 2.80
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*/
|
2024-01-17 11:36:45 +01:00
|
|
|
|
gboolean
|
|
|
|
|
gi_arg_info_get_destroy_index (GIArgInfo *info,
|
|
|
|
|
unsigned int *out_destroy_index)
|
2010-06-05 17:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
|
ArgBlob *blob;
|
2024-01-17 11:36:45 +01:00
|
|
|
|
gboolean has_destroy_index;
|
2010-06-05 17:40:15 +02:00
|
|
|
|
|
2024-01-17 11:36:45 +01:00
|
|
|
|
g_return_val_if_fail (info != NULL, FALSE);
|
|
|
|
|
g_return_val_if_fail (GI_IS_ARG_INFO (info), FALSE);
|
2010-06-05 17:40:15 +02:00
|
|
|
|
|
|
|
|
|
blob = (ArgBlob *)&rinfo->typelib->data[rinfo->offset];
|
|
|
|
|
|
2024-01-17 11:36:45 +01:00
|
|
|
|
has_destroy_index = (blob->destroy >= 0);
|
|
|
|
|
|
|
|
|
|
if (out_destroy_index != NULL)
|
|
|
|
|
*out_destroy_index = has_destroy_index ? blob->destroy : 0;
|
|
|
|
|
return has_destroy_index;
|
2010-06-05 17:40:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2023-11-28 18:09:26 +01:00
|
|
|
|
* gi_arg_info_get_type_info:
|
2010-06-05 17:40:15 +02:00
|
|
|
|
* @info: a #GIArgInfo
|
|
|
|
|
*
|
|
|
|
|
* Obtain the type information for @info.
|
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Returns: (transfer full): The [class@GIRepository.TypeInfo] holding the type
|
|
|
|
|
* information for @info, free it with [method@GIRepository.BaseInfo.unref]
|
|
|
|
|
* when done
|
|
|
|
|
* Since: 2.80
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*/
|
|
|
|
|
GITypeInfo *
|
2023-11-28 18:09:26 +01:00
|
|
|
|
gi_arg_info_get_type_info (GIArgInfo *info)
|
2010-06-05 17:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo *)info;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (info != NULL, NULL);
|
|
|
|
|
g_return_val_if_fail (GI_IS_ARG_INFO (info), NULL);
|
|
|
|
|
|
2023-11-08 16:23:31 +01:00
|
|
|
|
return gi_type_info_new ((GIBaseInfo*)info, rinfo->typelib, rinfo->offset + G_STRUCT_OFFSET (ArgBlob, arg_type));
|
2010-06-05 17:40:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2024-02-05 16:13:46 +01:00
|
|
|
|
* gi_arg_info_load_type_info:
|
2010-06-05 17:40:15 +02:00
|
|
|
|
* @info: a #GIArgInfo
|
|
|
|
|
* @type: (out caller-allocates): Initialized with information about type of @info
|
|
|
|
|
*
|
|
|
|
|
* Obtain information about a the type of given argument @info; this
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* function is a variant of [method@GIRepository.ArgInfo.get_type_info] designed
|
|
|
|
|
* for stack allocation.
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*
|
|
|
|
|
* The initialized @type must not be referenced after @info is deallocated.
|
2023-12-13 01:25:20 +01:00
|
|
|
|
*
|
2024-01-23 19:07:17 +01:00
|
|
|
|
* Once you are done with @type, it must be cleared using
|
|
|
|
|
* [method@GIRepository.BaseInfo.clear].
|
|
|
|
|
*
|
2023-12-13 01:25:20 +01:00
|
|
|
|
* Since: 2.80
|
2010-06-05 17:40:15 +02:00
|
|
|
|
*/
|
|
|
|
|
void
|
2024-02-05 16:13:46 +01:00
|
|
|
|
gi_arg_info_load_type_info (GIArgInfo *info,
|
|
|
|
|
GITypeInfo *type)
|
2010-06-05 17:40:15 +02:00
|
|
|
|
{
|
|
|
|
|
GIRealInfo *rinfo = (GIRealInfo*) info;
|
|
|
|
|
|
|
|
|
|
g_return_if_fail (info != NULL);
|
|
|
|
|
g_return_if_fail (GI_IS_ARG_INFO (info));
|
|
|
|
|
|
2024-01-23 18:53:15 +01:00
|
|
|
|
gi_type_info_init (type, (GIBaseInfo*)info, rinfo->typelib, rinfo->offset + G_STRUCT_OFFSET (ArgBlob, arg_type));
|
2010-06-05 17:40:15 +02:00
|
|
|
|
}
|
2023-11-28 18:24:20 +01:00
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
gi_arg_info_class_init (gpointer g_class,
|
|
|
|
|
gpointer class_data)
|
|
|
|
|
{
|
|
|
|
|
GIBaseInfoClass *info_class = g_class;
|
|
|
|
|
|
|
|
|
|
info_class->info_type = GI_INFO_TYPE_ARG;
|
|
|
|
|
}
|