MudOSa4DGD/
MudOSa4DGD/bin/
MudOSa4DGD/data/
MudOSa4DGD/doc/
MudOSa4DGD/doc/driver/
MudOSa4DGD/doc/efun/bitstrings/
MudOSa4DGD/doc/efun/command/
MudOSa4DGD/doc/efun/communication/
MudOSa4DGD/doc/efun/heart_beat/
MudOSa4DGD/doc/efun/interactive/
MudOSa4DGD/doc/efun/inventory/
MudOSa4DGD/doc/efun/living/
MudOSa4DGD/doc/efun/mappings/
MudOSa4DGD/doc/efun/strings/
MudOSa4DGD/doc/efun/uid/
MudOSa4DGD/doc/funs/
MudOSa4DGD/doc/language/
MudOSa4DGD/mudlib/dgd/doc/
MudOSa4DGD/mudlib/dgd/lib/include/dgd/
MudOSa4DGD/mudlib/dgd/lib/std/
MudOSa4DGD/mudlib/dgd/lib/sys/
MudOSa4DGD/mudlib/dgd/log/
MudOSa4DGD/mudlib/log/
MudOSa4DGD/mudlib/std/include/
MudOSa4DGD/mudlib/std/obj/
/*
 * auto.h
 *
 * Global auto include file. Automatically included by all objects.
 *
 * (C) Frank Schmidt, Jesus@NorseMUD
 *
 */

#ifndef _AUTO_H
#define _AUTO_H


/* standard DGD definitions we might have use for */
#include <dgd/float.h>
#include <dgd/limits.h>
#include <dgd/status.h>
#include <dgd/trace.h>
#include <dgd/type.h>

/* include some quick and dirty MudOS compability */
#include <mudos.h>


/* on what driver are we running? */
#define DRIVER_VERSION           (status()[ST_VERSION])
#define DRIVER_SHORT_NAME        ("DGD")
#define DRIVER_LONG_NAME         ("Dworkin's Generic Driver")

/* what driver library are we using? (this package dumbass!) */
#define DRIVERLIB_VERSION        ("1.1")
#define DRIVERLIB_SHORT_NAME     ("MudOSa4DGD")
#define DRIVERLIB_LONG_NAME      ("MudOS-alike for DGD")


#endif