Points to a linked list of CRITERIA records for the given class.

typedef struct _CLASSCRITERIA {
  struct _CLASSCRITERIA      *pNext;         /*  Pointer to the next class criteria record. */
  struct _CLASSCRITERIA      *pPrev;         /*  Pointer to the previous class criteria record. */
  M_WPObject                 *Class;         /*  Pointer to the class object. */
  PCRITERIA                   pCriteria;     /*  Pointer to a linked list of CRITERIA records. */
  WPObject                   *NotifyObject;  /*  The owner of the criteria list. */
} CLASSCRITERIA;

typedef   CLASSCRITERIA   * PCLASSCRITERIA ;


[Back] [Next]