mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 19:02:05 -04:00
add common types
This commit is contained in:
parent
e96a9b2690
commit
b9fcdde267
1 changed files with 14 additions and 0 deletions
|
|
@ -19,5 +19,19 @@
|
|||
#define ISC_TYPES_H 1
|
||||
|
||||
#include <isc/int.h>
|
||||
#include <isc/list.h>
|
||||
|
||||
/***
|
||||
*** Core Types.
|
||||
***/
|
||||
|
||||
typedef struct isc_mem isc_mem_t;
|
||||
typedef unsigned int isc_eventtype_t;
|
||||
typedef struct isc_event isc_event_t;
|
||||
typedef ISC_LIST(struct isc_event) isc_eventlist_t;
|
||||
typedef struct isc_task isc_task_t;
|
||||
typedef struct isc_taskmgr isc_taskmgr_t;
|
||||
|
||||
typedef void (*isc_taskaction_t)(isc_task_t *, isc_event_t *);
|
||||
|
||||
#endif /* ISC_TYPES_H */
|
||||
|
|
|
|||
Loading…
Reference in a new issue