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

/// #include

    // System

#include <dos/dos.h>
#include <dos/dostags.h>
#include <dos/exall.h>

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

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

    // Private

#include <tcn/macros.h>

///
/// #define

    // Constants

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

///

/// struct Settings

extern struct Settings
{

    STRPTR    To;
    BOOL      Quiet;

} *Set;

///

