We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73e458c commit ac6be2eCopy full SHA for ac6be2e
src/Generator/Options.cs
@@ -210,6 +210,19 @@ public bool DoAllModulesHaveLibraries() =>
210
/// </summary>
211
public HashSet<string> ExplicitlyPatchedVirtualFunctions { get; }
212
213
+ #endregion
214
+
215
+ #region Embeddinator options
216
217
+ // If true, will use unmanaged->managed thunks to call managed methods.
218
+ // In this mode the JIT will generate specialized wrappers for marshaling
219
+ // which will be faster but also lead to higher memory consumption.
220
+ public bool UseUnmanagedThunks;
221
222
+ // If true, will generate support files alongside generated binding code.
223
+ public bool GenerateSupportFiles = true;
224
225
226
}
227
228
public class InvalidOptionException : Exception
0 commit comments