mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-20 17:40:12 +00:00
13 lines
189 B
C++
13 lines
189 B
C++
#ifndef UG_HOLE_PUNCH_STATUS_CODE_HPP
|
|
#define UG_HOLE_PUNCH_STATUS_CODE_HPP
|
|
|
|
enum class CompletionStatus{
|
|
Success,
|
|
UnexpectedDisconnect,
|
|
GracefulDisconnect,
|
|
MsgError,
|
|
Error
|
|
};
|
|
|
|
#endif
|