engiGetNextTypeDeclarationIterator

This call returns next iterator of EXPRESS schema declarations for entities and types. 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
//
SchemaTypeIterator  engiGetNextTypeDeclarationIterator(
                            SdaiModel               model,
                            SchemaTypeIterator      iterator
                        );


//
//   Weak typing definition
//
void    __declspec(dllexport) * __stdcall engiGetNextTypeDeclarationIterator(
                                                                            int_t                   model,
                                                                            void                    * iterator
                                                                        );
    

Property model

Size: 32 bit / 4 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: 32 bit / 4 byte (reference)
...