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 #pragma ident "%Z%%M% %I% %E% SMI" 9*7c478bd9Sstevel@tonic-gate 10*7c478bd9Sstevel@tonic-gate #ifndef log_AUTO_H 11*7c478bd9Sstevel@tonic-gate #define log_AUTO_H 12*7c478bd9Sstevel@tonic-gate 13*7c478bd9Sstevel@tonic-gate #define DB_log_register (DB_log_BEGIN + 1) 14*7c478bd9Sstevel@tonic-gate 15*7c478bd9Sstevel@tonic-gate typedef struct _log_register_args { 16*7c478bd9Sstevel@tonic-gate u_int32_t type; 17*7c478bd9Sstevel@tonic-gate DB_TXN *txnid; 18*7c478bd9Sstevel@tonic-gate DB_LSN prev_lsn; 19*7c478bd9Sstevel@tonic-gate u_int32_t opcode; 20*7c478bd9Sstevel@tonic-gate DBT name; 21*7c478bd9Sstevel@tonic-gate DBT uid; 22*7c478bd9Sstevel@tonic-gate u_int32_t id; 23*7c478bd9Sstevel@tonic-gate DBTYPE ftype; 24*7c478bd9Sstevel@tonic-gate } __log_register_args; 25*7c478bd9Sstevel@tonic-gate 26*7c478bd9Sstevel@tonic-gate #endif 27