tinymush-2.2.4/conf/
tinymush-2.2.4/scripts/
tinymush-2.2.4/vms/
/*
  Header file for the UnterMud DB layer, as applied to MUSH 2.0

  Andrew Molitor, amolitor@eagle.wesleyan.edu
  1991
  */
#ifndef _udb_defs_h
#define _udb_defs_h

#ifndef	lint
static char *udb_defs_RCSid = "$Id: udb_defs.h,v 1.7 1995/03/21 00:01:25 ambar Exp $";
USE(udb_defs_RCSid);
#endif


/*
  some machines stdio use different parameters to tell fopen to open
  a file for creation and binary read/write. that is why they call it
  the "standard" I/O library, I guess. for HP/UX, you need to have
  this "rb+", and make sure the file already exists before use. bleah
 */
#define	FOPEN_BINARY_RW	"a+"


#ifdef VMS
#define MAXPATHLEN	256
#define	NOSYSTYPES_H
#define	NOSYSFILE_H
#endif /* VMS */

/* If your malloc() returns void or char pointers... */
/* typedef	void	*mall_t; */
typedef char *mall_t;

/* default (runtime-resettable) cache parameters */

#ifdef CACHE_OBJS
#define	CACHE_DEPTH	10
#define	CACHE_WIDTH	60
#else
#define	CACHE_DEPTH	15
#define	CACHE_WIDTH	541
#endif

/* Macros for calling the DB layer */

#define	DB_INIT()	dddb_init()
#define	DB_CLOSE()	dddb_close()
#define	DB_SYNC()	dddb_sync()
#define	DB_GET(n)	dddb_get(n)
#define	DB_PUT(o,n)	dddb_put(o,n)
#define	DB_CHECK(s)	dddb_check(s)

#ifdef CACHE_OBJS
#define	DB_DEL(n,f)	dddb_del(n)
#else
#define	DB_DEL(n,f)	dddb_del(n,f)
#endif

#define	CMD__DBCONFIG	cmd__dddbconfig

#endif /* _udb_defs_h */