Home  /  Autodocs  /  datatypes.library

NAME

GetDTTriggerMethodDataFlags
Get data type of dtt_Data value (V45)

SYNOPSIS

type = GetDTTriggerMethodDataFlags( method );
d0

ULONG GetDTTriggerMethodDataFlags( ULONG );

FUNCTION

This function returns the kind of data which can be attached to the stt_Data field in the dtTrigger method body.

The data type can be specified by or'ing the method id (within STMF_METHOD_MASK value) with one of the STMD_#? identifiers:

STMD_VOID
stt_Data MUST be NULL

STMD_ULONG
stt_Data contains an unsigned long value

STMD_STRPTR
stt_Data is a string pointer

STMD_TAGLIST
stt_Data points to an array of struct TagItem's, terminated with TAG_DONE

The trigger methods below STM_USER are explicitly handled, as described in <datatypes/datatypesclass.h>, e.g. STM_COMMAND return STMD_STRPTR, instead of STMD_VOID.

INPUTS

method
dtt_Method ID from struct DTMethod

RESULT

type
one of the STMD_#? identifies in <datatypes/datatypesclass.h>

EXAMPLE

struct DTMethod htmldtc_dtm[] =
{
"Stop Loading", "STOP", (STM_STOP | STMD_VOID),
"Load Images", "LOADIMAGES", ((STM_USER + 20) | STMD_VOID),
"Goto URL", "GOTOURL", ((STM_USER + 21) | STMD_STRPTR),
NULL, NULL, 0L
};

Sets up three methods:
"STOP" takes no arguments,
"LOADIMAGES" takes no arguments and
"GOTOURL" takes a STRPTR as an argument.

SEE ALSO

CopyDTTriggerMethods, FindTriggerMethod, datatypesclass/DTM_TRIGGER