Sha256: 35d576920e259283d30ae45bd5e0386db1aa6ec197285779fef075354761c845

Contents?: true

Size: 943 Bytes

Versions: 18

Compression:

Stored size: 943 Bytes

Contents

#
# Copyright (C) 2008, 2009 Wayne Meissner
# All rights reserved.
#
# All rights reserved.
#
# This file is part of ruby-ffi.
#
# This code is free software: you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License version 3 only, as
# published by the Free Software Foundation.
#
# This code 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
# version 3 for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with this work.  If not, see <http://www.gnu.org/licenses/>.
#

require 'ffi/pointer'
module FFI
  class MemoryPointer
      
      def self.from_string(s)
        ptr = self.new(s.bytesize + 1, 1, false)
        ptr.put_string(0, s)
        ptr
      end

  end
end

Version data entries

18 entries across 18 versions & 2 rubygems

Version Path
ffi-1.0.9-x86-mingw32 lib/ffi/memorypointer.rb
ffi-1.0.9 lib/ffi/memorypointer.rb
ffi-1.0.7-x86-mingw32 lib/ffi/memorypointer.rb
ffi-1.0.7 lib/ffi/memorypointer.rb
ffi-1.0.6-x86-mingw32 lib/ffi/memorypointer.rb
ffi-1.0.6 lib/ffi/memorypointer.rb
ffi-1.0.5-x86-mingw32 lib/ffi/memorypointer.rb
ffi-1.0.5 lib/ffi/memorypointer.rb
ffi-1.0.4-x86-mingw32 lib/ffi/memorypointer.rb
ffi-1.0.4 lib/ffi/memorypointer.rb
ffi-1.0.3-x86-mingw32 lib/ffi/memorypointer.rb
ffi-1.0.3 lib/ffi/memorypointer.rb
ffi-1.0.2-x86-mingw32 lib/ffi/memorypointer.rb
ffi-1.0.2 lib/ffi/memorypointer.rb
ffi-1.0.1-x86-mingw32 lib/ffi/memorypointer.rb
ffi-1.0.1 lib/ffi/memorypointer.rb
ffi-1.0.0 lib/ffi/memorypointer.rb
ffi-aitrus-0.9.0.beta lib/ffi/memorypointer.rb