Hi,
decompiling a Dll with many [DllImport(... )] generated incomplete code, EntryPoint parameter is missing.
Example :
JustDecompile generated:
Correct Decompile:
Brgds
decompiling a Dll with many [DllImport(... )] generated incomplete code, EntryPoint parameter is missing.
Example :
JustDecompile generated:
[DllImport("mclmcrrt8_0.dll", CharSet=CharSet.None)]
[SuppressUnmanagedCodeSecurity]
private static extern void mxDestroyArray([In] IntPtr pMXArray);
Correct Decompile:
[SuppressUnmanagedCodeSecurity]
[DllImport("mclmcrrt8_0.dll", EntryPoint = "mxDestroyArray_proxy")]
private static extern void mxDestroyArray([In] IntPtr pMXArray);
Brgds