Home  /  Autodocs  /  datatypes.library

NAME

CopyDTTriggerMethods
Clone and modify DTA_TriggerMethods array (V45)

SYNOPSIS

newmethods = CopyDTTriggerMethods( methods, include, exclude );

struct DTMethod *CopyDTTriggerMethods( struct DTMethod *,
struct DTMethod *,
struct DTMethod * );

FUNCTION

Copy and modify a DTMethods array. This function is for subclass implementors for an easy way to add their trigger methods to exising ones, or disable some because they're internally used.

INPUTS

methods
Methods array, as obtained by GetDTTriggerMethods or DTA_TriggerMethods. NULL causes the function to return NULL.

include
Trigger methods to include. May be NULL.

exclude
Trigger methods to exclude. May be NULL. The dtm_Command and dtm_Method fields may have the options described in FindTriggerMethod to filter/match out the given entries.

NOTES

It is assumed that the dtm_Label and dtm_Command strings are valid as long as the object exists. They are NOT copied.

Subclasses which implements DTM_TRIGGER __MUST__ send unknown trigger methods to it's superclass.

RESULT

newmethods
New array of methods or NULL (no memory).

SEE ALSO

FindTriggerMethod, CopyDTMethods, FreeDTMethods