CLASSCRITERIA: Difference between revisions
Appearance
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...." |
(No difference)
|
Latest revision as of 02:49, 3 May 2025
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 ;