8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 15:23:02 +01:00

Move definitions only used by gspit to spit.cpp

This commit is contained in:
brodsom 2003-04-03 08:51:16 +00:00
parent 7a24672e3e
commit a52456e969
2 changed files with 13 additions and 13 deletions

View File

@ -164,18 +164,5 @@ static struct in_sw_tab_t burp_in_sw_table [] =
};
/* Definitions for GSPLIT */
#define IN_SW_SPIT_0 0 /* the unknowable switch */
#define IN_SW_SPIT_SP 30 /* splits back up files */
#define IN_SW_SPIT_JT 31 /* joins back up files */
static struct in_sw_tab_t spit_in_sw_table [] =
{
{IN_SW_SPIT_SP, 0, "SPLIT_BK_FILE", 0, 0, 0, FALSE, 0, 0, NULL},
{IN_SW_SPIT_JT, 0, "JOIN_BK_FILE", 0, 0, 0, FALSE, 0, 0, NULL},
{IN_SW_SPIT_0, 0, NULL, 0, 0, 0, FALSE, 0, 0, NULL}
};
#endif /* _BURP_BURP_H_ */

View File

@ -64,6 +64,19 @@
#define MODE_WRITE O_WRONLY | O_CREAT
#define MASK 0666
/* Definitions for GSPLIT */
#define IN_SW_SPIT_0 0 /* the unknowable switch */
#define IN_SW_SPIT_SP 30 /* splits back up files */
#define IN_SW_SPIT_JT 31 /* joins back up files */
static struct in_sw_tab_t spit_in_sw_table [] =
{
{IN_SW_SPIT_SP, 0, "SPLIT_BK_FILE", 0, 0, 0, FALSE, 0, 0, NULL},
{IN_SW_SPIT_JT, 0, "JOIN_BK_FILE", 0, 0, 0, FALSE, 0, 0, NULL},
{IN_SW_SPIT_0, 0, NULL, 0, 0, 0, FALSE, 0, 0, NULL}
};
/*************************************
** backup files header record
**************************************