Sha256: d2647787c1f79d3c1fc097337bee5e0392ef416aacfb7c4cb9230fe86fda4e78
Contents?: true
Size: 1.65 KB
Versions: 165
Compression:
Stored size: 1.65 KB
Contents
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */ /* * Copyright (C) 2012 Ruby-GNOME2 Project Team * * 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.1 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., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301 USA */ #include "rb-gi-private.h" #define RG_TARGET_NAMESPACE rb_cGIValueInfo #define SELF(self) (RVAL2GI_VALUE_INFO(self)) GType gi_value_info_get_type(void) { static GType type = 0; if (type == 0) { type = g_boxed_type_register_static("GIValueInfo", (GBoxedCopyFunc)g_base_info_ref, (GBoxedFreeFunc)g_base_info_unref); } return type; } static VALUE rg_value(VALUE self) { GIValueInfo *info; info = SELF(self); return LONG2NUM(g_value_info_get_value(info)); } void rb_gi_value_info_init(VALUE rb_mGI, VALUE rb_cGIBaseInfo) { VALUE RG_TARGET_NAMESPACE; RG_TARGET_NAMESPACE = G_DEF_CLASS_WITH_PARENT(GI_TYPE_VALUE_INFO, "ValueInfo", rb_mGI, rb_cGIBaseInfo); RG_DEF_METHOD(value, 0); }
Version data entries
165 entries across 165 versions & 1 rubygems