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
Remove deprecated/discouraged usages of JNA constructs (#102)
* Replace usage of Pointer#SIZE with Native#POINTER_SIZE
Pointer#SIZE will be removed from the JNA codebase (it is already
removed in master) as it is the root of class loading deadlocks.
* Replace deprecated usage of Pointer#getString and Pointer#setString
Pointer#setString(int offset, String value, boolean wide)
was replaced by the two methods:
Pointer#setString(int offset, String value)
and
Pointer#setWideString(int offset, String value)
The same holds true for the getter.
0 commit comments