diff options
author | Bruce Momjian | 1999-11-04 21:56:02 +0000 |
---|---|---|
committer | Bruce Momjian | 1999-11-04 21:56:02 +0000 |
commit | a45195a191eec367a4f305bb71ab541d17a3b9f9 (patch) | |
tree | 99b815a93f6175b0db76c2da0da39e95a0ee6b8d /src/bin/psql/large_obj.h | |
parent | 2ea3b6d63addeaf07267e2390597645cbf013c36 (diff) |
Major psql overhaul by Peter Eisentraut.
Diffstat (limited to 'src/bin/psql/large_obj.h')
-rw-r--r-- | src/bin/psql/large_obj.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/bin/psql/large_obj.h b/src/bin/psql/large_obj.h new file mode 100644 index 00000000000..22228e7b110 --- /dev/null +++ b/src/bin/psql/large_obj.h @@ -0,0 +1,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 */ |