Harmonize parameter names in ecpg code.
[pgsql.git] / src / include / libpq / libpq-fs.h
blob7fa02d2c3408100559014dbe573cc9136316fd2a
1 /*-------------------------------------------------------------------------
3 * libpq-fs.h
4 * definitions for using Inversion file system routines (ie, large objects)
7 * Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * src/include/libpq/libpq-fs.h
12 *-------------------------------------------------------------------------
14 #ifndef LIBPQ_FS_H
15 #define LIBPQ_FS_H
18 * Read/write mode flags for inversion (large object) calls
21 #define INV_WRITE 0x00020000
22 #define INV_READ 0x00040000
24 #endif /* LIBPQ_FS_H */