broker = CxBroker(nb,error);
D0 A0 D0
CxObj *CxBroker(struct NewBroker *,LONG *);
This function creates a broker from the specification found in the NewBroker structure pointed to by 'nb'. The purpose and meaning of the fields of the NewBroker structure are described below. Also see <libraries/commodities.h> for more info.
struct NewBroker {
BYTE nb_Version; STRPTR nb_Name; STRPTR nb_Title; STRPTR nb_Descr; WORD nb_Unique; WORD nb_Flags; BYTE nb_Pri; struct MsgPort *nb_Port; WORD nb_ReservedChannel;
};
- nb_Version
-
This is the way that future versions of commodities can identify which version of the NewBroker structure you are using. This should be set to NB_VERSION as defined in <libraries/commodities.h>
- nb_Name
-
This is the name of the broker. This name is used to find the broker in commodities' object list and is the name shown in the listview gadget of the Exchange program. The name string is copied in the broker object upon creation so it can be discarded right after CxBroker() returns. The maximum length of the name string is defined by a constant in <libraries/commodities.h>.
- nb_Title
-
see below
- nb_Descr
-
These are two strings which appear to the user in the Exchange program and describe the application the broker is representing. Note that these strings are copied into the broker object so they can be discarded right after CxBroker() returns. The maximum length of these strings that will be recognized are defined by constants in <libraries/commodities.h>.
- nb_Unique
-
This field indicates what should happen if a broker of the same name (nb_Name) already exists in commodities' object list. Constants in <libraries/commodities.h> allow the caller to specify whether another broker is to be created, and whether any existing broker of the same name should be notified that an attempt at creating a duplicate has been made.
- nb_Pri
-
This specifies with what priority the new broker is to be inserted within commodities' object list. Higher priority nodes appear earlier in a list. It is strongly recommended that the ToolTypes environment of an application be used to allow the end-user to set the priority of the broker.
SetCxObjPri(), <libraries/commodities.h>