mirror of
https://github.com/postgres/postgres.git
synced 2026-03-27 12:54:24 -04:00
24 lines
693 B
C
24 lines
693 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* libpq-fs.h
|
|
* definitions for using Inversion file system routines (ie, large objects)
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/libpq/libpq-fs.h,v 1.24 2009/01/01 17:23:59 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef LIBPQ_FS_H
|
|
#define LIBPQ_FS_H
|
|
|
|
/*
|
|
* Read/write mode flags for inversion (large object) calls
|
|
*/
|
|
|
|
#define INV_WRITE 0x00020000
|
|
#define INV_READ 0x00040000
|
|
|
|
#endif /* LIBPQ_FS_H */
|