method = FindMethod( methods, searchmethodid );
ULONG *FindMethod( ULONG *, ULONG );
This function searches for a given method in a given methods array like got from GetDTMethods.
Pointer to the method table entry or NULL if not found.
/* 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) ))