Class STBVorbisComment

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

@NativeType("struct stb_vorbis_comment") public class STBVorbisComment extends Struct<STBVorbisComment> implements NativeResource
struct stb_vorbis_comment {
    char * vendor;
    int comment_list_length;
    char ** comment_list;
}
  • Field Details

    • SIZEOF

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

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

      public static final int VENDOR
      The struct member offsets.
    • COMMENT_LIST_LENGTH

      public static final int COMMENT_LIST_LENGTH
      The struct member offsets.
    • COMMENT_LIST

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

    • STBVorbisComment

      public STBVorbisComment(ByteBuffer container)
      Creates a STBVorbisComment 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