/*
* 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