EventLoop_Run_Result 枚举

标头: #include <applibs/eventloop.h>

EventLoop_Run 函数的可能返回值。

typedef int EventLoop_Run_Result;
enum {
    EventLoop_Run_Failed = -1,
    EventLoop_Run_FinishedEmpty = 0,
    EventLoop_Run_Finished = 1,
};

成员

EventLoop_Run_Failed

EventLoop_Run 失败; errno 具有特定的错误代码。

EventLoop_Run_FinishedEmpty

EventLoop_Run 完成,但未处理任何事件。

EventLoop_Run_Finished

EventLoop_Run 处理一个或多个事件后完成。