00001 /* 00002 * psql - the PostgreSQL interactive terminal 00003 * 00004 * Copyright (c) 2000-2013, PostgreSQL Global Development Group 00005 * 00006 * src/bin/psql/large_obj.h 00007 */ 00008 #ifndef LARGE_OBJ_H 00009 #define LARGE_OBJ_H 00010 00011 bool do_lo_export(const char *loid_arg, const char *filename_arg); 00012 bool do_lo_import(const char *filename_arg, const char *comment_arg); 00013 bool do_lo_unlink(const char *loid_arg); 00014 bool do_lo_list(void); 00015 00016 #endif /* LARGE_OBJ_H */