tags:

views:

421

answers:

2

What's the equivalent to IntPtr (C#) in Java (JNA)?

+2  A: 

I expect that would be a com.sun.jna.ptr.ByReference or one of its concrete sub-types.

Steve Gilham
+6  A: 

com.sun.jna.ptr.IntByReference

James L