mirror of
https://github.com/InoriRus/Kyty.git
synced 2026-08-28 13:16:40 +00:00
24 lines
639 B
C
24 lines
639 B
C
|
|
|
|
|
|
#ifndef EASY_PROFILER__EVENT_TRACE_STATUS__H_
|
|
#define EASY_PROFILER__EVENT_TRACE_STATUS__H_
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
enum class EventTracingEnableStatus : unsigned char
|
|
{
|
|
LaunchedSuccessfully = 0,
|
|
PermissionDenied,
|
|
AlreadyLaunched,
|
|
BadPropertiesSize,
|
|
OpenTraceFailed,
|
|
UnknownError,
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
#endif // EASY_PROFILER__EVENT_TRACE_STATUS__H_
|