public static @interface Java4C.SimpleVariableRef
Sets the following array as simple reference. An byte[] in Java is a int8* in C.
It is the same as SimpleArrayRef. But in Java only array[0] should be used as referenced type.
This annotation should especially be used for arguments of methods.
It is the possibility to use dst[0] = value;
for return values in Java,
in C the dst is a simple reference to the destination variable, used: *dst = value;