2017-07-06 12:54:23 +00:00
|
|
|
#ifndef SHAPITO_H
|
|
|
|
#define SHAPITO_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Shapito.
|
|
|
|
*
|
|
|
|
* Protocol-level PostgreSQL client library.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
2017-08-16 13:20:33 +00:00
|
|
|
#include <stdarg.h>
|
2017-07-06 12:54:23 +00:00
|
|
|
#include <string.h>
|
2018-02-08 13:27:42 +00:00
|
|
|
#include <pthread.h>
|
2017-07-06 12:54:23 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "shapito/macro.h"
|
|
|
|
#include "shapito/md5.h"
|
|
|
|
#include "shapito/stream.h"
|
2018-02-08 13:27:42 +00:00
|
|
|
#include "shapito/cache.h"
|
2018-03-01 12:24:17 +00:00
|
|
|
#include "shapito/msg.h"
|
2017-07-06 12:54:23 +00:00
|
|
|
#include "shapito/header.h"
|
|
|
|
#include "shapito/key.h"
|
|
|
|
#include "shapito/password.h"
|
|
|
|
#include "shapito/parameter.h"
|
|
|
|
#include "shapito/error.h"
|
|
|
|
#include "shapito/read.h"
|
|
|
|
#include "shapito/fe_write.h"
|
|
|
|
#include "shapito/be_write.h"
|
|
|
|
#include "shapito/be_read.h"
|
|
|
|
#include "shapito/fe_read.h"
|
|
|
|
|
|
|
|
#endif /* SHAPITO_H */
|