Home  /  Autodocs  /  datatypes.library

NAME

FindMethod
find a specified method in methods array (V45)

SYNOPSIS

method = FindMethod( methods, searchmethodid );

ULONG *FindMethod( ULONG *, ULONG );

FUNCTION

This function searches for a given method in a given methods array like got from GetDTMethods.

INPUTS

methods
methods array, like got from GetDTMethods or DTA_Methods NULL is a valid arg.

searchmethodid
method id to find.

RESULT

Pointer to the method table entry or NULL if not found.

EXAMPLE

/* This macro tests if a given method (like DTM_PRINT) is
* supported by the given object
*/
#define IsDTMethodSupported( o, id ) \
((BOOL)FindMethod(GetDTMethods( (o) ), (id) ))

SEE ALSO

GetDTMethods, CopyDTMethods