2017-07-06 11:41:06 +00:00
|
|
|
#ifndef SHAPITO_H
|
|
|
|
#define SHAPITO_H
|
2016-11-09 13:19:50 +00:00
|
|
|
|
|
|
|
/*
|
2017-06-07 11:37:42 +00:00
|
|
|
* SHAPITO.
|
2016-11-09 13:19:50 +00:00
|
|
|
*
|
|
|
|
* Protocol-level PostgreSQL client library.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
2017-07-06 11:30:37 +00:00
|
|
|
#include "sources/macro.h"
|
|
|
|
#include "sources/md5.h"
|
|
|
|
#include "sources/stream.h"
|
|
|
|
#include "sources/header.h"
|
|
|
|
#include "sources/key.h"
|
|
|
|
#include "sources/password.h"
|
|
|
|
#include "sources/parameter.h"
|
|
|
|
#include "sources/error.h"
|
|
|
|
#include "sources/read.h"
|
2017-07-06 11:36:31 +00:00
|
|
|
#include "sources/fe_write.h"
|
|
|
|
#include "sources/be_write.h"
|
|
|
|
#include "sources/be_read.h"
|
|
|
|
#include "sources/fe_read.h"
|
2016-11-09 13:19:50 +00:00
|
|
|
|
2017-07-06 11:41:06 +00:00
|
|
|
#endif /* SHAPITO_H */
|