TPCircularBuffer
typedef struct {
void *buffer;
int32_t length;
int32_t tail;
int32_t head;
volatile int32_t fillCount;
} TPCircularBuffer
Undocumented
-
Undocumented
See moreDeclaration
Objective-C
struct { void *buffer; int32_t length; int32_t tail; int32_t head; volatile int32_t fillCount; }
Swift
struct TPCircularBuffer