blob: 4f3f2fc428a4239d44b6887da794b635087e7e4c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef LARGE_OBJ_H
#define LARGE_OBJ_H
#include "settings.h"
bool do_lo_export(PsqlSettings *pset, const char *loid_arg, const char *filename_arg);
bool do_lo_import(PsqlSettings *pset, const char *filename_arg, const char *comment_arg);
bool do_lo_unlink(PsqlSettings *pset, const char *loid_arg);
bool do_lo_list(PsqlSettings *pset);
#endif /* LARGE_OBJ_H */
|