cecil icon indicating copy to clipboard operation
cecil copied to clipboard

VTable/Native export section support

Open carlokok opened this issue 14 years ago • 4 comments

.NET supports VTable entries and native (pe) exports that invoke static methods as if they were written in a non-managed language. Cecil doesn't expose this feature yet.

carlokok avatar Apr 26 '10 08:04 carlokok

My vote for this feature!

GJAR avatar Jun 15 '11 13:06 GJAR

@carlokok , can you point me to some article about

.NET supports VTable entries and native (pe)

I do some lib here(NRegFreeCom) and potentially could benefit from such feature either.

dzmitry-lahoda avatar Aug 21 '13 10:08 dzmitry-lahoda

I've got it implemented it in this (old) fork: https://github.com/carlokok/cecil/blob/master/Mono.Cecil/ModuleDefinition.cs

carlokok avatar Aug 21 '13 11:08 carlokok

To my understanding. There are a couple of articles about this: UnmanagedExports

Managed Methods as Unmanaged Exports Export Managed Code as Unmanaged

Unmanaged Exports for .NET

OmegaExtern avatar Apr 30 '16 22:04 OmegaExtern