Example #1
0
 public PInvokeMetadata(string module, string entrypoint, PInvokeFlags flags)
 {
     Name   = entrypoint;
     Module = module;
     Flags  = flags;
 }
Example #2
0
 public PInvokeMetadata(string module, string entrypoint, PInvokeAttributes attributes)
 {
     Name   = entrypoint;
     Module = module;
     Flags  = new PInvokeFlags(attributes);
 }