Jump to content

CLASSCRITERIA

From EDM2
Revision as of 02:49, 3 May 2025 by Martini (talk | contribs) (Created page with "An array of class criteria objects. The final element of the array should be NULL. == Type == struct == C Declaration Method == typedef struct == Example Code == <PRE> 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....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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 ;