odyssey/sources/global.h

23 lines
288 B
C
Raw Normal View History

2018-03-13 13:17:27 +00:00
#ifndef OD_GLOBAL_H
#define OD_GLOBAL_H
/*
2018-03-12 14:03:15 +00:00
* Odyssey.
*
2017-07-05 12:42:49 +00:00
* Advanced PostgreSQL connection pooler.
*/
2018-03-13 13:17:27 +00:00
typedef struct od_global od_global_t;
2018-03-13 13:17:27 +00:00
struct od_global
{
void *instance;
void *system;
void *router;
void *console;
void *cron;
void *worker_pool;
};
2018-03-13 13:17:27 +00:00
#endif /* OD_GLOBAL_H */