43 lines
838 B
C
43 lines
838 B
C
/*
|
|
* <aisl/event.h>
|
|
*
|
|
* Copyright (c) 2017 by Löwenware Ltd.
|
|
*
|
|
* Project homepage: https://lowenware.com/aisl/
|
|
*
|
|
*/
|
|
|
|
#ifndef AISL_EVENT_H_E99458C9_CCAA_4CAC_97F8_41E8869EE26F
|
|
#define AISL_EVENT_H_E99458C9_CCAA_4CAC_97F8_41E8869EE26F
|
|
|
|
#include <stdint.h>
|
|
|
|
enum
|
|
{
|
|
AISL_SERVER_OPEN = 100
|
|
, AISL_SERVER_ERROR = 190
|
|
|
|
, AISL_CLIENT_CONNECT = 200
|
|
, AISL_CLIENT_DISCONNECT = 210
|
|
, AISL_CLIENT_TIMEOUT = 220
|
|
|
|
, AISL_STREAM_OPEN = 300
|
|
, AISL_STREAM_HEADER = 310
|
|
, AISL_STREAM_INPUT = 320
|
|
, AISL_STREAM_REQUEST = 330
|
|
, AISL_STREAM_OUTPUT = 340
|
|
, AISL_STREAM_CLOSE = 350
|
|
, AISL_STREAM_ERROR = 390
|
|
|
|
, AISL_EVENTS_CUSTOM = 1000
|
|
|
|
};
|
|
|
|
typedef uint32_t aisl_event_t;
|
|
|
|
|
|
const char *
|
|
aisl_event_get_text( aisl_event_t event );
|
|
|
|
#endif /* !AISL_EVENT_H */
|