CoreSDK  v1.0.0.b1304
r5error.h
1 /*
2  * Copyright (c) 2022 Infrared5, Inc.
3  * License information: https://account.red5.net/assets/LICENSE.txt
4  *
5  */
6 
7 #pragma once
8 
9 namespace r5::common {
10 
12 enum class Error {
13  Ok,
14  Failed,
15  NotImplemented
16 };
17 
18 } // namespace r5::common
Definition: r5codec.h:12