Package org.robovm.rt.bro.ptr
-
Class Summary Class Description BooleanPtr Points to an 8-bitbooleanvalue.BooleanPtr.BooleanPtrPtr Pointer toBooleanPtrBytePtr Points to an 8-bit signed value (char *in C).BytePtr.BytePtrPtr Pointer toBytePtr(char **in C)CharPtr Points to a 16-bit unsigned value (unsigned short *in C).CharPtr.CharPtrPtr Pointer toCharPtr(unsigned short **in C)DoublePtr Points to adoublevalue (double *in C).DoublePtr.DoublePtrPtr Pointer toDoublePtr(double **in C)FloatPtr Points to afloatvalue (float *in C).FloatPtr.FloatPtrPtr Pointer toFloatPtr(float **in C)FunctionPtr Points to a function.FunctionPtr.FunctionPtrPtr Pointer toFunctionPtr.IntPtr Points to a 32-bit signed value (int32_t *in C).IntPtr.IntPtrPtr Pointer toIntPtr(int32_t **in C)LongPtr Points to a 64-bit signed value (int64_t *in C).LongPtr.LongPtrPtr Pointer toLongPtr(int64_t **in C)MachineSizedFloatPtr Points to either afloatordoublevalue depending on the machine word.MachineSizedFloatPtr.MachineSizedFloatPtrPtr Pointer toMachineSizedFloatPtr.MachineSizedSIntPtr Points to a 32-bit or 64-bit signed value depending on the machine word size (long *in C).MachineSizedSIntPtr.MachineSizedSIntPtrPtr Pointer toMachineSizedSIntPtr(long **in C)MachineSizedUIntPtr Points to a 32-bit or 64-bit unsigned value depending on the machine word size (unsigned long *in C).MachineSizedUIntPtr.MachineSizedUIntPtrPtr Pointer toMachineSizedUIntPtr(unsigned long **in C)Ptr<S extends NativeObject,T extends Ptr<S,T>> Generic pointer to pointer (<type> **in C).ShortPtr Points to a 16-bit signed value (short *in C).ShortPtr.ShortPtrPtr Pointer toShortPtr(short **in C)VoidPtr Points to an unspecified value (void *in C).VoidPtr.VoidPtrPtr Pointer toVoidPtr(void **in C)