xref: /onnv-gate/usr/src/cmd/sendmail/db/include/log_auto.h (revision 0:68f95e015346)
1*0Sstevel@tonic-gate /* Do not edit: automatically built by dist/db_gen.sh. */
2*0Sstevel@tonic-gate 
3*0Sstevel@tonic-gate /*
4*0Sstevel@tonic-gate  * Copyright (c) 1998 by Sun Microsystems, Inc.
5*0Sstevel@tonic-gate  * All rights reserved.
6*0Sstevel@tonic-gate  */
7*0Sstevel@tonic-gate 
8*0Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
9*0Sstevel@tonic-gate 
10*0Sstevel@tonic-gate #ifndef log_AUTO_H
11*0Sstevel@tonic-gate #define log_AUTO_H
12*0Sstevel@tonic-gate 
13*0Sstevel@tonic-gate #define	DB_log_register	(DB_log_BEGIN + 1)
14*0Sstevel@tonic-gate 
15*0Sstevel@tonic-gate typedef struct _log_register_args {
16*0Sstevel@tonic-gate 	u_int32_t type;
17*0Sstevel@tonic-gate 	DB_TXN *txnid;
18*0Sstevel@tonic-gate 	DB_LSN prev_lsn;
19*0Sstevel@tonic-gate 	u_int32_t	opcode;
20*0Sstevel@tonic-gate 	DBT	name;
21*0Sstevel@tonic-gate 	DBT	uid;
22*0Sstevel@tonic-gate 	u_int32_t	id;
23*0Sstevel@tonic-gate 	DBTYPE	ftype;
24*0Sstevel@tonic-gate } __log_register_args;
25*0Sstevel@tonic-gate 
26*0Sstevel@tonic-gate #endif
27