00001 /*------------------------------------------------------------------------- 00002 * 00003 * libpq-fs.h 00004 * definitions for using Inversion file system routines (ie, large objects) 00005 * 00006 * 00007 * Portions Copyright (c) 1996-2013, PostgreSQL Global Development Group 00008 * Portions Copyright (c) 1994, Regents of the University of California 00009 * 00010 * src/include/libpq/libpq-fs.h 00011 * 00012 *------------------------------------------------------------------------- 00013 */ 00014 #ifndef LIBPQ_FS_H 00015 #define LIBPQ_FS_H 00016 00017 /* 00018 * Read/write mode flags for inversion (large object) calls 00019 */ 00020 00021 #define INV_WRITE 0x00020000 00022 #define INV_READ 0x00040000 00023 00024 #endif /* LIBPQ_FS_H */