The SEDRIS Data Representation Model
APPENDIX C - Types
SE_Field_Modifier
/*
 * ENUM: SE_Field_Modifier
 *
 *   This data type is used in SE_DRM_Field_Structure to describe how
 *   a field within a structure was "modified" by the declaration of
 *   the field.
 */
typedef enum
{
SE_FLD_MDFR_PLAIN,1
SE_FLD_MDFR_BIT,2
SE_FLD_MDFR_1D_ARRAY,3
SE_FLD_MDFR_2D_ARRAY,4
SE_FLD_MDFR_POINTER,5
SE_FLD_MDFR_UNION6
} SE_Field_Modifier;


Enumerant Notes

1 The field is not modified, so it is considered "plain".

2 The field is a bit field.

3 The field is a fixed-size 1-dimensional array.

4 The field is a fixed-size 2-dimensional array.

5 The field is a pointer (not a fixed-size array).

6 The field is a union.




Prev: SE_Feature_Topology_Level. Next: SE_FIELDS_PTR.


Return to: Top of this Page, Type Index