Class FilePathList

java.lang.Object
com.raylib.jextract.FilePathList

public class FilePathList extends Object
struct FilePathList {
    unsigned int capacity;
    unsigned int count;
    char **paths;
}
  • Method Details

    • layout

      public static final GroupLayout layout()
      The layout of this struct
    • capacity$layout

      public static final ValueLayout.OfInt capacity$layout()
      Layout for field:
      unsigned int capacity
      
    • capacity$offset

      public static final long capacity$offset()
      Offset for field:
      unsigned int capacity
      
    • capacity

      public static int capacity(MemorySegment struct)
      Getter for field:
      unsigned int capacity
      
    • capacity

      public static void capacity(MemorySegment struct, int fieldValue)
      Setter for field:
      unsigned int capacity
      
    • count$layout

      public static final ValueLayout.OfInt count$layout()
      Layout for field:
      unsigned int count
      
    • count$offset

      public static final long count$offset()
      Offset for field:
      unsigned int count
      
    • count

      public static int count(MemorySegment struct)
      Getter for field:
      unsigned int count
      
    • count

      public static void count(MemorySegment struct, int fieldValue)
      Setter for field:
      unsigned int count
      
    • paths$layout

      public static final AddressLayout paths$layout()
      Layout for field:
      char **paths
      
    • paths$offset

      public static final long paths$offset()
      Offset for field:
      char **paths
      
    • paths

      public static MemorySegment paths(MemorySegment struct)
      Getter for field:
      char **paths
      
    • paths

      public static void paths(MemorySegment struct, MemorySegment fieldValue)
      Setter for field:
      char **paths
      
    • asSlice

      public static MemorySegment asSlice(MemorySegment array, long index)
      Obtains a slice of arrayParam which selects the array element at index. The returned segment has address arrayParam.address() + index * layout().byteSize()
    • sizeof

      public static long sizeof()
      The size (in bytes) of this struct
    • allocate

      public static MemorySegment allocate(SegmentAllocator allocator)
      Allocate a segment of size layout().byteSize() using allocator
    • allocateArray

      public static MemorySegment allocateArray(long elementCount, SegmentAllocator allocator)
      Allocate an array of size elementCount using allocator. The returned segment has size elementCount * layout().byteSize().
    • reinterpret

      public static MemorySegment reinterpret(MemorySegment addr, Arena arena, Consumer<MemorySegment> cleanup)
      Reinterprets addr using target arena and cleanupAction (if any). The returned segment has size layout().byteSize()
    • reinterpret

      public static MemorySegment reinterpret(MemorySegment addr, long elementCount, Arena arena, Consumer<MemorySegment> cleanup)
      Reinterprets addr using target arena and cleanupAction (if any). The returned segment has size elementCount * layout().byteSize()