Files correlati : Commento : - Creazione nuova cartella per contenere tutte le librerie esterne - Aggiunta nuova libreria sqlapi per interfacciare campo a vari DB git-svn-id: svn://10.65.10.50/branches/R_10_00@24149 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			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-2013, 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 */
 |