LeviLamina
Loading...
Searching...
No Matches
MappedPorts.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct MappedPorts {
6public:
7 // member variables
8 // NOLINTBEGIN
11 // NOLINTEND
12
13#ifdef LL_PLAT_S
14public:
15 // prevent constructor by default
16 MappedPorts& operator=(MappedPorts const&);
17 MappedPorts(MappedPorts const&);
18
19#else // LL_PLAT_C
20public:
21 // prevent constructor by default
22 MappedPorts& operator=(MappedPorts const&);
23 MappedPorts(MappedPorts const&);
24 MappedPorts();
25
26#endif
27public:
28 // member functions
29 // NOLINTBEGIN
30#ifdef LL_PLAT_S
31 MCNAPI MappedPorts();
32#endif
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38#ifdef LL_PLAT_S
39 MCNAPI void* $ctor();
40#endif
41 // NOLINTEND
42};
Definition Alias.h:14