Skip to content

Commit

Permalink
add string size method
Browse files Browse the repository at this point in the history
  • Loading branch information
xpenatan committed Jan 26, 2024
1 parent 368c380 commit 1708a99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion example/lib/generator/src/main/java/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private static void generateAndBuild() throws Exception {

ArrayList<BuildMultiTarget> targets = new ArrayList<>();
if(BuildTarget.isWindows() || BuildTarget.isUnix()) {
// targets.add(getWindowTarget());
targets.add(getWindowTarget());
// targets.add(getEmscriptenTarget(idlReader));
// targets.add(getAndroidTarget());
}
Expand Down
1 change: 1 addition & 0 deletions jParser/base/src/main/resources/IDLHelper.idl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ interface IDLString {
void clear();
void append([Const] DOMString text);
void append([Const] DOMString text, long size);
long size();
byte at(long index);
[Const] DOMString c_str();
};
Expand Down

0 comments on commit 1708a99

Please sign in to comment.