LeviLamina
Loading...
Searching...
No Matches
StreamInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/rtc/StreamResult.h"
7#include "mc/external/rtc/StreamState.h"
8
9namespace rtc {
10
12public:
13 // member variables
14 // NOLINTBEGIN
16 // NOLINTEND
17
18public:
19 // prevent constructor by default
20 StreamInterface& operator=(StreamInterface const&);
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 // vIndex: 0
27 virtual ~StreamInterface();
28
29 // vIndex: 1
30 virtual ::rtc::StreamState GetState() const = 0;
31
32 // vIndex: 2
33 virtual ::rtc::StreamResult Read(::rtc::ArrayView<uchar>, uint64&, int&) = 0;
34
35 // vIndex: 3
36 virtual ::rtc::StreamResult Write(::rtc::ArrayView<uchar const>, uint64&, int&) = 0;
37
38 // vIndex: 4
39 virtual void Close() = 0;
40
41 // vIndex: 5
42 virtual bool Flush();
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
49
50 MCNAPI ::rtc::StreamResult WriteAll(void const* data, uint64 data_len, uint64* written, int* error);
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCNAPI void* $ctor();
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCNAPI void $dtor();
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCNAPI bool $Flush();
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
77
78} // namespace rtc
Definition _HeaderOutputPredefine.h:260
Definition StreamInterface.h:11
MCAPI::rtc::StreamResult WriteAll(void const *data, uint64 data_len, uint64 *written, int *error)
MCAPI void $dtor()
MCAPI bool $Flush()
static MCAPI void ** $vftable()
MCAPI void * $ctor()
Definition Read.h:6
Definition Write.h:6
Definition Alias.h:14