Header And Logo

PostgreSQL
| The world's most advanced open source database.

rmgrdesc.h

Go to the documentation of this file.
00001 /*
00002  * rmgrdesc.h
00003  *
00004  * pg_xlogdump resource managers declaration
00005  *
00006  * contrib/pg_xlogdump/rmgrdesc.h
00007  */
00008 #ifndef RMGRDESC_H
00009 #define RMGRDESC_H
00010 
00011 #include "lib/stringinfo.h"
00012 
00013 typedef struct RmgrDescData
00014 {
00015     const char *rm_name;
00016     void      (*rm_desc) (StringInfo buf, uint8 xl_info, char *rec);
00017 } RmgrDescData;
00018 
00019 extern const RmgrDescData RmgrDescTable[];
00020 
00021 #endif /* RMGRDESC_H */