BSA_ObjectType
The BSA_ObjectType enumeration describes the original data type of the object. It is defined as follows:
typedef enum {
BSA_ObjectType_ANY = 1,
BSA_ObjectType_FILE = 2,
BSA_ObjectType_DIRECTORY = 3,
BSA_ObjectType_OTHER = 4
} BSA_ObjectType;The meaning of the enumeration values is as follows:
Table: BSA_ObjectType Enumeration Values
Constant | Value | Definition |
|---|---|---|
ANY | 1 | Used for matching any object type (for example, "file" or directory") value in the object type field of structures for selecting query results. |
FILE | 2 | Used by the application to indicate that the type of application object is a "file" or single object. |
DIRECTORY | 3 | Used by the application to indicate that the type of application object is a "directory" or container of objects. |
OTHER | 4 | Used by the application to indicate that the type of application object is neither a "file" nor a "directory". |