Package apple.audiotoolbox.struct
Class AURenderEventHeader
- java.lang.Object
-
- org.moe.natj.general.NativeObject
-
- org.moe.natj.c.StructObject
-
- apple.audiotoolbox.struct.AURenderEventHeader
-
public final class AURenderEventHeader extends org.moe.natj.c.StructObject
-
-
Constructor Summary
Constructors Modifier Constructor Description AURenderEventHeader()protectedAURenderEventHeader(org.moe.natj.general.Pointer peer)AURenderEventHeader(org.moe.natj.general.ptr.VoidPtr next, long eventSampleTime, byte eventType, byte reserved)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longeventSampleTime()!byteeventType()!org.moe.natj.general.ptr.VoidPtrnext()!bytereserved()!voidsetEventSampleTime(long value)!voidsetEventType(byte value)!voidsetNext(org.moe.natj.general.ptr.VoidPtr value)!voidsetReserved(byte value)!
-
-
-
Method Detail
-
next
public org.moe.natj.general.ptr.VoidPtr next()
!< The next event in a linked list of events.
-
setNext
public void setNext(org.moe.natj.general.ptr.VoidPtr value)
!< The next event in a linked list of events.
-
eventSampleTime
public long eventSampleTime()
!< The sample time at which the event is scheduled to occur.
-
setEventSampleTime
public void setEventSampleTime(long value)
!< The sample time at which the event is scheduled to occur.
-
eventType
public byte eventType()
!< The type of the event.
-
setEventType
public void setEventType(byte value)
!< The type of the event.
-
reserved
public byte reserved()
!< Must be 0.
-
setReserved
public void setReserved(byte value)
!< Must be 0.
-
-