Question about DLL imports - Fast
-
Hi. I just have a little question: Is it possible to see an DLL import's map? When I tried to do so in a managed c++ assembly, instead of "XXX.dll" i saw a commented "No map", but in 'normal' (c# or vb.net assemblies), i see all the things. There should be a way to see the map(the name of the dll holding the exported function in an managed c++ exe), right? Here's what I got when I tried to peek at an dll import using ILDASM: .method public static pinvokeimpl(/* No map */) int32 modopt([Microsoft.VisualC]Microsoft.VisualC.IsLongModifier) modopt([mscorlib]System.Runtime.CompilerServices.CallConvStdcall) ThemepDemoCheck(uint16 modopt([Microsoft.VisualC]Microsoft.VisualC.IsConstModifier)* A_0) native unmanaged preservesig { .custom instance void [mscorlib]System.Security.SuppressUnmanagedCodeSecurityAttribute::.ctor() = ( 01 00 00 00 ) // Embedded native code // Disassembly of native methods is not supported. // Managed TargetRVA = 0x001D65D7 } // end of method 'Global Functions'::ThemepDemoCheck Thanks in advance