Object class structure.

typedef struct _OBJCLASS {
  struct _OBJCLASS      *pNext;         /*  Pointer to the next object class structure. */
  PSZ                    pszClassName;  /*  Class name. */
  PSZ                    pszModName;    /*  Module name. */
} OBJCLASS;

typedef   OBJCLASS   * POBJCLASS ;


[Back] [Next]