LeviLamina
Loading...
Searching...
No Matches
Dispatcher.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace rtc {
6
7class Dispatcher {
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 // vIndex: 0
12 virtual ~Dispatcher() = default;
13
14 // vIndex: 1
15 virtual uint GetRequestedEvents() = 0;
16
17 // vIndex: 2
18 virtual void OnEvent(uint, int) = 0;
19
20 // vIndex: 3
21 virtual void* GetWSAEvent() = 0;
22
23 // vIndex: 4
24 virtual uint64 GetSocket() = 0;
25
26 // vIndex: 5
27 virtual bool CheckSignalClose() = 0;
28 // NOLINTEND
29
30public:
31 // destructor thunk
32 // NOLINTBEGIN
33
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // vftables
44 // NOLINTBEGIN
45 MCAPI static void** $vftable();
46 // NOLINTEND
47};
48
49} // namespace rtc
Definition Dispatcher.h:7