>:Hello,
>:
[quoted text clipped - 15 lines]
>:
>:Aaron Boxer
Some idiot once upon a time decided that Windows would use those dumb
"\" characters instead of real, regular slashes. Since virtually every
other environment uses those for escaping special characters, and since
the value you're passing is a Java String, you likely need to escape
them by doubling them up. But you could also save yourself some grief
if you understand how the loading of JNI libraries works.
On Windows, if you put the DLL file in the very same directory where the
launched application starts from (the directory which is returned via
the user.dir system property), there's no problem. It's automatically
found. On the other hand, instead of using System.loadLibrary("name"),
you could just use System.load("filename.dll") instead. It lets you
specify the absolute or relative path without problems.
= Steve =

Signature
Steve W. Jackson
Montgomery, Alabama