Name

OfxPropertySuiteV1 — The OFX suite used to access properties on OFX objects.

Synopsis

#include "ofxProperty.h"
typedef struct OfxPropertySuiteV1 {
  OfxStatus (*propSetPointer)(OfxPropertySetHandle properties, const char *property, int index, void *value);
  OfxStatus (*propSetString) (OfxPropertySetHandle properties, const char *property, int index, const char *value);
  OfxStatus (*propSetDouble) (OfxPropertySetHandle properties, const char *property, int index, double value);
  OfxStatus (*propSetInt)    (OfxPropertySetHandle properties, const char *property, int index, int value);
  OfxStatus (*propSetPointerN)(OfxPropertySetHandle properties, const char *property, int count, void **value);
  OfxStatus (*propSetStringN) (OfxPropertySetHandle properties, const char *property, int count, const char **value);
  OfxStatus (*propSetDoubleN) (OfxPropertySetHandle properties, const char *property, int count, double *value);
  OfxStatus (*propSetIntN)    (OfxPropertySetHandle properties, const char *property, int count, int *value);
  OfxStatus (*propGetPointer)(OfxPropertySetHandle properties, const char *property, int index, void **value);
  OfxStatus (*propGetString) (OfxPropertySetHandle properties, const char *property, int index, char **value);
  OfxStatus (*propGetDouble) (OfxPropertySetHandle properties, const char *property, int index, double *value);
  OfxStatus (*propGetInt)    (OfxPropertySetHandle properties, const char *property, int index, int *value);
  OfxStatus (*propGetPointerN)(OfxPropertySetHandle properties, const char *property, int count, void **value);
  OfxStatus (*propGetStringN) (OfxPropertySetHandle properties, const char *property, int count, char **value);
  OfxStatus (*propGetDoubleN) (OfxPropertySetHandle properties, const char *property, int count, double *value);
  OfxStatus (*propGetIntN)    (OfxPropertySetHandle properties, const char *property, int count, int *value);
  OfxStatus (*propReset)    (OfxPropertySetHandle properties, const char *property);
  OfxStatus (*propGetDimension)  (OfxPropertySetHandle properties, const char *property, int *count);
} OfxPropertySuiteV1;

Description