LeviLamina
Loading...
Searching...
No Matches
BufferQueue.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace rtc {
6
7struct BufferQueue {
8public:
9 // prevent constructor by default
11
12public:
13 // member functions
14 // NOLINTBEGIN
15 MCNAPI BufferQueue(uint64, uint64);
16
17 MCNAPI void Clear();
18
19 MCNAPI bool ReadFront(void*, uint64, uint64*);
20
21 MCNAPI bool WriteBack(void const*, uint64, uint64*);
22
23 MCNAPI uint64 size() const;
24
25 MCNAPI ~BufferQueue();
26 // NOLINTEND
27
28public:
29 // constructor thunks
30 // NOLINTBEGIN
31 MCNAPI void* $ctor(uint64, uint64);
32 // NOLINTEND
33
34public:
35 // destructor thunk
36 // NOLINTBEGIN
37 MCNAPI void $dtor();
38 // NOLINTEND
39};
40
41} // namespace rtc
Definition BufferQueue.h:7
MCAPI void $dtor()
MCAPI bool WriteBack(void const *, uint64, uint64 *)
MCAPI BufferQueue(uint64, uint64)
MCAPI void * $ctor(uint64, uint64)
MCAPI bool ReadFront(void *, uint64, uint64 *)
MCAPI void Clear()
MCAPI uint64 size() const
MCAPI ~BufferQueue()