mirror of
				https://github.com/postgres/postgres.git
				synced 2025-10-31 10:30:33 +03:00 
			
		
		
		
	This is the first run of the Perl-based pgindent script. Also update pgindent instructions.
		
			
				
	
	
		
			22 lines
		
	
	
		
			375 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			375 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * rmgrdesc.h
 | |
|  *
 | |
|  * pg_xlogdump resource managers declaration
 | |
|  *
 | |
|  * contrib/pg_xlogdump/rmgrdesc.h
 | |
|  */
 | |
| #ifndef RMGRDESC_H
 | |
| #define RMGRDESC_H
 | |
| 
 | |
| #include "lib/stringinfo.h"
 | |
| 
 | |
| typedef struct RmgrDescData
 | |
| {
 | |
| 	const char *rm_name;
 | |
| 	void		(*rm_desc) (StringInfo buf, uint8 xl_info, char *rec);
 | |
| } RmgrDescData;
 | |
| 
 | |
| extern const RmgrDescData RmgrDescTable[];
 | |
| 
 | |
| #endif   /* RMGRDESC_H */
 |