/*
**    GMI (GetModeInfo)
**
**        © 1996 by Timo C. Nentwig
**        All Rights Reserved !
**
**        Tcn@oxygen.in-berlin.de
**
*/

/// #include

#include <dos/dos.h>
#include <dos/rdargs.h>

#include <exec/memory.h>
#include <exec/types.h>

#include <graphics/displayinfo.h>

#include <libraries/asl.h>

#include <proto/asl.h>
#include <proto/dos.h>
#include <proto/exec.h>
#include <proto/graphics.h>

    // Private

#include <tcn/macros.h>

///
/// #define

#define PRG_VERSION "2.2"
#define PRG_TITLE   "GMI"
#define PRG_AUTHOR  "Timo C. Nentwig"
#define PRG_EMAIL   "Tcn@oxygen.in-berlin.de"
#define PRG_YEAR    "1996"

///

/// struct Settings

extern struct Settings
{

    struct
    {

        BOOL    Dimension;
        BOOL    Monitor;
        BOOL    Display;

    } Info;

} *Set;

///
