Sean, Sean Charles <[EMAIL PROTECTED]> (on Thu, 8 Mar 2007 14:39:52 +0000):
> Now all you have to do is to compile this C file into a shared > library named "hello.ndll". > ...um, how do I do this please ? :-) on most systems, using gcc, it's gcc -shared -o your_lib.so your_source.c the osx (apple's patched gcc) equivalent of "-shared" is "-dynamiclib". for ndlls to work properly, on linux you'll also need -fPIC hth, -dan -- http://0xDF.com/ http://iterative.org/ -- Neko : One VM to run them all (http://nekovm.org)
