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