Parameters
- projectType
- Project type.
- projectStream
- Project stream to open.
- flags
Combination (ORing) of a flag from each of the following three groups:
Value Meaning LL_PRJOPEN_CD_OPEN_EXISTING
File must already exist, otherwise error code will be returned.
LL_PRJOPEN_CD_CREATE_ALWAYS
File is always newly created. If it already exists, the content is deleted.
LL_PRJOPEN_CD_CREATE_NEW
File is newly created if it does not exist. If file already exists, error code is returned.
LL_PRJOPEN_CD_OPEN_ALWAYS
If file exists the content is used, otherwise file is newly created.
Value Meaning LL_PRJOPEN_AM_READWRITE
File is opened for read/write access.
LL_PRJOPEN_AM_READONLY
File is only opened for read access.
Value Meaning LL_PRJOPEN_EM_IGNORE_
FORMULAERRORS
Syntax errors are ignored. See notes.