mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-07-26 02:31:48 +02:00
bin
module
vendor
CPR
ConcurrentQueue
Fmt
MaxmindDB
POCO
ApacheConnector
CppParser
CppUnit
Crypto
Data
MySQL
ODBC
PostgreSQL
cmake
include
Poco
libpq
libpq-fs.h
src
testsuite
CMakeLists.txt
Makefile
PostgreSQL.progen
PostgreSQL_VS90.sln
PostgreSQL_VS90.vcproj
PostgreSQL_vs140.sln
PostgreSQL_vs140.vcxproj
PostgreSQL_vs140.vcxproj.filters
PostgreSQL_vs150.sln
PostgreSQL_vs150.vcxproj
PostgreSQL_vs150.vcxproj.filters
PostgreSQL_vs160.sln
PostgreSQL_vs160.vcxproj
PostgreSQL_vs160.vcxproj.filters
dependencies
SQLite
cmake
doc
include
samples
src
testsuite
CMakeLists.txt
Data.progen
Data_VS90.sln
Data_VS90.vcproj
Data_vs140.sln
Data_vs140.vcxproj
Data_vs140.vcxproj.filters
Data_vs150.sln
Data_vs150.vcxproj
Data_vs150.vcxproj.filters
Data_vs160.sln
Data_vs160.vcxproj
Data_vs160.vcxproj.filters
Makefile
dependencies
Encodings
Foundation
JSON
JWT
MongoDB
Net
NetSSL_OpenSSL
NetSSL_Win
PDF
PageCompiler
PocoDoc
ProGen
Redis
SevenZip
Util
XML
Zip
appveyor
build
cmake
contrib
doc
packaging
patches
release
travis
.gitattributes
.gitignore
.gitmodules
.travis.yml
CHANGELOG
CMakeLists.txt
CODE_OF_CONDUCT.md
CONTRIBUTING.md
CONTRIBUTORS
LICENSE
Makefile
NEWS
README
README.md
VERSION
appveyor.yml
build_cmake.cmd
build_cmake.sh
build_vs140.cmd
build_vs150.cmd
build_vs160.cmd
buildwin.cmd
buildwin.ps1
components
configure
cppignore.lnx
cppignore.win
env.bat
env.sh
libversion
SimpleIni
Squirrel
TinyDir
CMakeLists.txt
.gitignore
.gitmodules
CMakeLists.txt
LICENSE
README.md
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
25 lines
633 B
C
25 lines
633 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* libpq-fs.h
|
|
* definitions for using Inversion file system routines (ie, large objects)
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2015, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/libpq/libpq-fs.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#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 */
|