LeviLamina
Loading...
Searching...
No Matches
Error.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/bx/StringView.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace bx { struct ErrorResult; }
11// clang-format on
12
13namespace bx {
14
15class Error {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 16, ::bx::StringView> m_msg;
20 ::ll::TypedStorage<4, 4, uint> m_code;
21 // NOLINTEND
22
23public:
24 // member functions
25 // NOLINTBEGIN
26 MCAPI void setError(::bx::ErrorResult _errorResult, ::bx::StringView const& _msg);
27 // NOLINTEND
28};
29
30} // namespace bx
Definition Error.h:7
Definition ErrorResult.h:7