You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: jnaerator/src/main/java/com/ochafik/lang/jnaerator/JNAeratorCommandLineArgs.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -160,7 +160,8 @@ public enum OptionDef {
160
160
NoJAR( "(?i)-noJar", "Do not create an output JAR"),
161
161
// EnableCPlusPlus( "-cppInstanceMethods", "Enable experimental C++ instance methods wrapping"),
162
162
NoLibBundle( "(?i)-noLibBundle", "Do not bundle libraries in output JAR"),
163
-
MaxConstructedFields(
163
+
LibFile( "-libFile", "Bundle the provided file with the JNAerated JAR so that it is extracted with the library when it is first used.", newArgDef(Type.ExistingFile, "resourceFile")),
164
+
MaxConstructedFields(
164
165
"-maxConstrFields", "Maximum number of fields allowed for structure fields constructors. If a struct has more fields, it will only get a default constructor.", newArgDef(Type.Int, "fieldCount")),
165
166
CPlusPlusGen( "-genCPlusPlus", "[Experimental, Not working at all] Generate C++ classes.");
0 commit comments