Hi all,
We’re happy to announce the release of win32-mmap 0.0.1. This should
be considered a Beta release.
What is it?
···
===========
An interface to Win32’s version of memory mapped files. For more
information see the README and documentation under the 'doc’
directory.
Where is it?
You can find it on the RAA or the project home page at
http://rubyforge.org/projects/win32utils/
Quick example
require "win32/mmap"
include Win32
— in process 1 —
m1 = Mmap.new
m1.setvar(‘a’, a);
— in process 2 —
m2 = Mmap.new(nil,nil,nil,true) # reuse existing mmap
a = m2.getvar(‘a’);
Enjoy!
The Win32 Utils Team