michaelherndon / morph

Social & Productivity Mashup Dashboard Application for various APIs and Services. currently using C# 4.0 & WPF

This URL has Read+Write access

morph /
ReadMe.txt

[AIM]
http://dev.aol.com/forum?c=showthread&ThreadID=930

[Mono DLL Imports]
http://mono-project.com/DllNotFoundException  
http://mono-project.com/DllMap
** see MONO DLL













[MONO DLL]
Example

The following example maps references to the `cygwin1.dll' shared library to the `libc.so.6' file:

    <configuration>
            <dllmap dll="cygwin1.dll" target="libc.so.6"/>
    </configuration>
This one maps the following C# method:

    [DllImport ("libc")]
    static extern void somefunction ();
to a different function in libdifferent.so, but to the same function in the library libanother.so when running under the 
Solaris and FreeBSD operating systems.

    <configuration>
        <dllmap dll="libc">
            <dllentry dll="libdifferent.so" name="somefunction" target="differentfunction" />
            <dllentry os="solaris,freebsd" dll="libanother.so" name="somefunction" target="differentfunction" />
        </dllmap>
    </configuration>