[July 2005 - apparently the assembly no longer works, don't have time to
 figure out why.  Just use calldllmodule_noasm.c instead]

You need to download the 'mingw' package.
See www.mingw.org for more details.  I don't think you need
the full 'msys' package, the 'mingw' package is probably enough.

Drop this directory into \python24 (i.e, c:\python24\calldll),
and then run 'compile.bat'.

If you're upgrading to a new python, you'll have to edit compile.bat
to point to the correct library file.  [the -lpython24 would be changed
to -lpython25 or -lpython42]

gcc -I../Include -O2 -c npstructmodule.c -o npstructmodule.o

copy con: npstruct.def
EXPORTS
	initnpstruct
^Z

dllwrap --dllname npstruct.pyd --driver-name gcc --def npstruct.def -o npstruct.pyd npstructmodule.o -s --entry _DllMain@12 --target=i386-mingw32 -L../libs -lpython24
