]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - logprint/logprint.h
Update copyright/license notices to match SGI legal prefered boilerplate.
[thirdparty/xfsprogs-dev.git] / logprint / logprint.h
1 /*
2 * Copyright (c) 2000-2001,2004-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18 #ifndef LOGPRINT_H
19 #define LOGPRINT_H
20
21 #include <xfs/libxlog.h>
22
23 /* command line flags */
24 extern int print_data;
25 extern int print_only_data;
26 extern int print_inode;
27 extern int print_quota;
28 extern int print_buffer;
29 extern int print_transactions;
30 extern int print_overwrite;
31 extern int print_no_data;
32 extern int print_no_print;
33
34 /* exports */
35 extern char *trans_type[];
36
37 extern void xlog_print_lseek(xlog_t *, int, xfs_daddr_t, int);
38
39 extern void xfs_log_copy(xlog_t *, int, char *);
40 extern void xfs_log_dump(xlog_t *, int, int);
41 extern void xfs_log_print(xlog_t *, int, int);
42 extern void xfs_log_print_trans(xlog_t *, int);
43
44 extern void print_xlog_record_line(void);
45 extern void print_xlog_op_line(void);
46 extern void print_stars(void);
47
48 #endif /* LOGPRINT_H */