Class AIExportDataBlob

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

@NativeType("struct aiExportDataBlob") public class AIExportDataBlob extends Struct<AIExportDataBlob> implements NativeResource
struct aiExportDataBlob {
    size_t size;
    void * data;
    struct aiString name;
    struct aiExportDataBlob * next;
}
  • Field Details

    • SIZEOF

      public static final int SIZEOF
      The struct size in bytes.
    • ALIGNOF

      public static final int ALIGNOF
      The struct alignment in bytes.
    • SIZE

      public static final int SIZE
      The struct member offsets.
    • DATA

      public static final int DATA
      The struct member offsets.
    • NAME

      public static final int NAME
      The struct member offsets.
    • NEXT

      public static final int NEXT
      The struct member offsets.
  • Constructor Details

    • AIExportDataBlob

      public AIExportDataBlob(ByteBuffer container)
      Creates a AIExportDataBlob instance at the current position of the specified ByteBuffer container. Changes to the buffer's content will be visible to the struct instance and vice versa.

      The created instance holds a strong reference to the container object.

  • Method Details