[ANN] win32-mmap 0.0.1

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

djberg96@hotmail.com (Daniel Berger) wrote in message news:6e613a32.0403132140.544c6200@posting.google.com

Hi all,

We’re happy to announce the release of win32-mmap 0.0.1. This should
be considered a Beta release.

Quick note - 0.0.2 has been released. There was a bug in new() that
could cause a segfault. Please use that instead.

The Win32 Utils Team