Access Mode

 
The SdaiAccessMode is used in the sdaiOpenModel and sdaiOpenModelBN operations to specify the wanted access mode to the actual EDMdatabaseTM model..
 
typedef enum{
sdaiRO,
sdaiRW,
edmSRO,
edmSRW,
edmNOACCESS
} SdaiAccessMode;
 
The interpretation of the SdaiAccessMode is as follows:
 
sdaiRO - Model is open for read only access.
sdaiRW - Model is open for read and write access.
edmSRO - Model is open for shared read only access. For multi-user systems only.
edmSRW - Model is open for shared read and write access. For multi-user systems only.
Â