示例#1
0
            out uint n_specs_p); // guint*

        public ParamSpec[] List(GType ownerType)
        {
            AssertNotDisposed();
            var retPtr = g_param_spec_pool_list(Handle, ownerType, out var nSpecsP);
            var ret    = GMarshal.PtrToOpaqueCArray <ParamSpec> (retPtr, (int)nSpecsP, true);

            return(ret);
        }
示例#2
0
        internal static ParamSpec[] ListProperties(IntPtr handle)
        {
            uint nProperties_;
            var  ret_ = g_object_class_list_properties(handle, out nProperties_);
            var  ret  = GMarshal.PtrToOpaqueCArray <ParamSpec> (ret_, (int)nProperties_, true);

            return(ret);
        }