]> granicus.if.org Git - postgresql/blob - contrib/pg_xlogdump/rmgrdesc.h
Update copyright for 2014
[postgresql] / contrib / pg_xlogdump / rmgrdesc.h
1 /*
2  * rmgrdesc.h
3  *
4  * pg_xlogdump resource managers declaration
5  *
6  * contrib/pg_xlogdump/rmgrdesc.h
7  */
8 #ifndef RMGRDESC_H
9 #define RMGRDESC_H
10
11 #include "lib/stringinfo.h"
12
13 typedef struct RmgrDescData
14 {
15         const char *rm_name;
16         void            (*rm_desc) (StringInfo buf, uint8 xl_info, char *rec);
17 } RmgrDescData;
18
19 extern const RmgrDescData RmgrDescTable[];
20
21 #endif   /* RMGRDESC_H */