This call returns next iterator of EXPRESS schema declarations.
If the input iterator is NULL it returns first iterator.
If the input iterator is last it returns NULL.
The declaration can be ENTITY, TYPE ENUM, TYPE SELECT, or defined TYPE.
Use engiGetDeclarationFromIterator to access the further information.
Syntax
//
// Strong typing definition
//
SchemaDeclIterator engiGetNextDeclarationIterator(
SdaiModel model,
SchemaDeclIterator iterator
);
//
// Weak typing definition
//
int_t __declspec(dllexport) __stdcall engiGetNextDeclarationIterator(
int_t model,
int_t iterator
);
Property model
Size: 64 bit / 8 byte (value)
The handle to the model. The model handle is static during its existance. Several models can be opened simultaniously within one session. Different models are always independent, threads are allowed to be running on different models simultaniously.
Property iterator
Size: 64 bit / 8 byte (value)
...