Browse Source

Remove Embeddinator-specific options from CppSharp.

pull/829/head
Joao Matos 8 years ago
parent
commit
ac1c25a848
  1. 12
      src/Generator/Options.cs

12
src/Generator/Options.cs

@ -195,18 +195,6 @@ namespace CppSharp @@ -195,18 +195,6 @@ namespace CppSharp
public HashSet<string> ExplicitlyPatchedVirtualFunctions { get; }
#endregion
#region Embeddinator options
// If true, will use unmanaged->managed thunks to call managed methods.
// In this mode the JIT will generate specialized wrappers for marshaling
// which will be faster but also lead to higher memory consumption.
public bool UseUnmanagedThunks;
// If true, will generate support files alongside generated binding code.
public bool GenerateSupportFiles = true;
#endregion
}
public class InvalidOptionException : Exception

Loading…
Cancel
Save