Sha256: 407931290a4c474d99aef5a0d2d4f3638d4af94886e349fa08a80ee7577fa515
Contents?: true
Size: 630 Bytes
Versions: 50
Compression:
Stored size: 630 Bytes
Contents
module Nokogiri module LibXML # :nodoc: class XmlSyntaxError < FFI::ManagedStruct # :nodoc: layout( :domain, :int, :code, :int, :message, :pointer, :level, :int, :file, :string, :line, :int, :str1, :string, :str2, :string, :str3, :string, :int1, :int, :int2, :int, :ctxt, :pointer, :node, :pointer ) def self.allocate LibXML.calloc(1, LibXML::XmlSyntaxError.size) end def self.release(ptr) LibXML.free(ptr) end end end end
Version data entries
50 entries across 50 versions & 9 rubygems