Sha256: 3e4e0d9721c2a75641a15b79ea773bc8e263e2adbad69a9bab7c8c2b49f8ae32
Contents?: true
Size: 660 Bytes
Versions: 12
Compression:
Stored size: 660 Bytes
Contents
# frozen_string_literal: true require 'ffi' module FFI module CPL module Port extend ::FFI::Library ffi_lib [FFI::CURRENT_PROCESS, FFI::GDAL.gdal_library_path] #------------------------------------------------------------------------ # Typedefs #------------------------------------------------------------------------ typedef :int, :GInt32 typedef :uint, :GUInt32 typedef :short, :GInt16 typedef :ushort, :GUInt16 typedef :uchar, :GByte typedef :int, :GBool typedef :long_long, :GIntBig typedef :ulong_long, :GUIntBig typedef :GIntBig, :GPtrDiff_t end end end
Version data entries
12 entries across 12 versions & 1 rubygems