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

/// #include

    // System

#include <dos/dos.h>

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

#include <graphics/view.h>

#include <libraries/commodities.h>

#include <utility/tagitem.h>

#include <proto/commodities.h>
#include <proto/dos.h>
#include <proto/exec.h>
#include <proto/icon.h>
#include <proto/graphics.h>
#include <proto/utility.h>

    // ANSI-C

#include <stdlib.h>
#include <string.h>

    // Private

#include <tcn/macros.h>
#include <tcn/register.h>

///
/// #define

    // Constants

#define PRG_VERSION "1.0"
#define PRG_TITLE   "OBPP"
#define PRG_AUTHOR  "Timo C. Nentwig"
#define PRG_EMAIL   "Tcn@oxygen.in-berlin.de"
#define PRG_YEAR    "1996"
#define PRG_SHORT   "Definble precision for ObtainBestPen()"

///

/// struct Settings

extern struct Settings
{

    struct
    {

        LONG     Priority;

    } Cx;

    ULONG    Precision;

} *Set;

///

    // Commodity specifics

extern struct MsgPort   *CxPort;
extern CxObj            *Broker;

