michaelherndon / morph
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
U-Michael-PC\Michael (author)
Sat Jun 27 19:58:08 -0700 2009
morph /
| name | age | message | |
|---|---|---|---|
| |
Local.testsettings | ||
| |
Morph.sln | ||
| |
Morph.vsmdi | ||
| |
ReadMe.txt | ||
| |
TraceAndTestImpact.testsettings | ||
| |
docs/ | ||
| |
lib/ | ||
| |
src/ | ||
| |
test/ |
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>

