Porting JNI code to x64
I am trying to port some existing JNI code so that it can run on 64 bit platforms as well as the existing 32 bit platforms. The one issue I cannot seem to solve is what to do with variables which are linked to the platform size.
For example, a variable which is delared assize_t will be 32 bits on the 32 bit platforms, but will be 64 bits on the 64 bit platforms.
I cannot find any JNI defines that match this paradyme.

