#ifndef LIBRARIES_COMMODITIES_PRIVATE_H
#define LIBRARIES_COMMODITIES_PRIVATE_H
/*
**      $VER: commodities_private.h 38.4 (24.2.93)
**      Includes Release 40.15
**
**      Commodities definitions
**
**      (C) Copyright 1990-1993 Commodore-Amiga Inc.
**      All Rights Reserved
*/

/*****************************************************************************/


#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif

#ifndef EXEC_NODES_H
#include <exec/nodes.h>
#endif

#ifndef EXEC_PORTS_H
#include <exec/ports.h>
#endif

#ifndef LIBRARIES_COMMODITIES_H
#include <libraries/commodities.h>
#endif


/*****************************************************************************/


struct BrokerCopy
{
    struct Node     bc_Node;                  // 00..0E
    char            bc_Name[CBD_NAMELEN];     // 0E..26
    char            bc_Title[CBD_TITLELEN];   // 26..4E
    char            bc_Descr[CBD_DESCRLEN];   // 4E..76
    struct Task *   bc_Task;                  // 76..7A
    struct MsgPort *bc_Port;                  // 7A..7E
    ULONG           bc_Dummy2;                // 7E..82   /* And another one nb_Unique */
    WORD            bc_Flags;                 // 82..84
};

#define COF_ACTIVE 2


/*****************************************************************************/

#endif /* LIBRARIES_COMMODITIES_PRIVATE_H */

