|
17 | 17 | *
|
18 | 18 | *
|
19 | 19 | * IDENTIFICATION
|
20 |
| - * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.h,v 1.70 2006/05/28 21:13:54 tgl Exp $ |
| 20 | + * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.h,v 1.71 2006/07/11 13:54:24 momjian Exp $ |
21 | 21 | *
|
22 | 22 | *-------------------------------------------------------------------------
|
23 | 23 | */
|
@@ -98,29 +98,29 @@ struct _archiveHandle;
|
98 | 98 | struct _tocEntry;
|
99 | 99 | struct _restoreList;
|
100 | 100 |
|
101 |
| -typedef void (*ClosePtr) (struct _archiveHandle * AH); |
102 |
| -typedef void (*ArchiveEntryPtr) (struct _archiveHandle * AH, struct _tocEntry * te); |
103 |
| - |
104 |
| -typedef void (*StartDataPtr) (struct _archiveHandle * AH, struct _tocEntry * te); |
105 |
| -typedef size_t (*WriteDataPtr) (struct _archiveHandle * AH, const void *data, size_t dLen); |
106 |
| -typedef void (*EndDataPtr) (struct _archiveHandle * AH, struct _tocEntry * te); |
107 |
| - |
108 |
| -typedef void (*StartBlobsPtr) (struct _archiveHandle * AH, struct _tocEntry * te); |
109 |
| -typedef void (*StartBlobPtr) (struct _archiveHandle * AH, struct _tocEntry * te, Oid oid); |
110 |
| -typedef void (*EndBlobPtr) (struct _archiveHandle * AH, struct _tocEntry * te, Oid oid); |
111 |
| -typedef void (*EndBlobsPtr) (struct _archiveHandle * AH, struct _tocEntry * te); |
112 |
| - |
113 |
| -typedef int (*WriteBytePtr) (struct _archiveHandle * AH, const int i); |
114 |
| -typedef int (*ReadBytePtr) (struct _archiveHandle * AH); |
115 |
| -typedef size_t (*WriteBufPtr) (struct _archiveHandle * AH, const void *c, size_t len); |
116 |
| -typedef size_t (*ReadBufPtr) (struct _archiveHandle * AH, void *buf, size_t len); |
117 |
| -typedef void (*SaveArchivePtr) (struct _archiveHandle * AH); |
118 |
| -typedef void (*WriteExtraTocPtr) (struct _archiveHandle * AH, struct _tocEntry * te); |
119 |
| -typedef void (*ReadExtraTocPtr) (struct _archiveHandle * AH, struct _tocEntry * te); |
120 |
| -typedef void (*PrintExtraTocPtr) (struct _archiveHandle * AH, struct _tocEntry * te); |
121 |
| -typedef void (*PrintTocDataPtr) (struct _archiveHandle * AH, struct _tocEntry * te, RestoreOptions *ropt); |
122 |
| - |
123 |
| -typedef size_t (*CustomOutPtr) (struct _archiveHandle * AH, const void *buf, size_t len); |
| 101 | +typedef void (*ClosePtr) (struct _archiveHandle *AH); |
| 102 | +typedef void (*ArchiveEntryPtr) (struct _archiveHandle *AH, struct _tocEntry *te); |
| 103 | + |
| 104 | +typedef void (*StartDataPtr) (struct _archiveHandle *AH, struct _tocEntry *te); |
| 105 | +typedef size_t (*WriteDataPtr) (struct _archiveHandle *AH, const void *data, size_t dLen); |
| 106 | +typedef void (*EndDataPtr) (struct _archiveHandle *AH, struct _tocEntry *te); |
| 107 | + |
| 108 | +typedef void (*StartBlobsPtr) (struct _archiveHandle *AH, struct _tocEntry *te); |
| 109 | +typedef void (*StartBlobPtr) (struct _archiveHandle *AH, struct _tocEntry *te, Oid oid); |
| 110 | +typedef void (*EndBlobPtr) (struct _archiveHandle *AH, struct _tocEntry *te, Oid oid); |
| 111 | +typedef void (*EndBlobsPtr) (struct _archiveHandle *AH, struct _tocEntry *te); |
| 112 | + |
| 113 | +typedef int (*WriteBytePtr) (struct _archiveHandle *AH, const int i); |
| 114 | +typedef int (*ReadBytePtr) (struct _archiveHandle *AH); |
| 115 | +typedef size_t (*WriteBufPtr) (struct _archiveHandle *AH, const void *c, size_t len); |
| 116 | +typedef size_t (*ReadBufPtr) (struct _archiveHandle *AH, void *buf, size_t len); |
| 117 | +typedef void (*SaveArchivePtr) (struct _archiveHandle *AH); |
| 118 | +typedef void (*WriteExtraTocPtr) (struct _archiveHandle *AH, struct _tocEntry *te); |
| 119 | +typedef void (*ReadExtraTocPtr) (struct _archiveHandle *AH, struct _tocEntry *te); |
| 120 | +typedef void (*PrintExtraTocPtr) (struct _archiveHandle *AH, struct _tocEntry *te); |
| 121 | +typedef void (*PrintTocDataPtr) (struct _archiveHandle *AH, struct _tocEntry *te, RestoreOptions *ropt); |
| 122 | + |
| 123 | +typedef size_t (*CustomOutPtr) (struct _archiveHandle *AH, const void *buf, size_t len); |
124 | 124 |
|
125 | 125 | typedef enum _archiveMode
|
126 | 126 | {
|
|
0 commit comments