Skip to main content

This struct is a typedef of _ec_blobject_class. It is defined as follows:

struct _ec_blobject_class {
  /** typename as per memtype naming conventions */
  const char *objectType;
  /**
   * destructor function.
   * the dtor is called when the
   * last reference to the blobject is released
   **/
  void (*dtor)(void *self);
  /**
   * printer.
   * For introspection, renders state into a string.
   **/
  void (*printer)(void *self, string *output);
};

To use this struct, include the file ec_blobject.h.

See Also

Was this page helpful?