Jump to content

CLASSCRITERIA

From EDM2

An array of class criteria objects. The final element of the array should be NULL.

Type

struct

C Declaration Method

typedef struct

Example Code

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 ;