Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef ATTNUM_H
00015 #define ATTNUM_H
00016
00017
00018
00019
00020
00021 typedef int16 AttrNumber;
00022
00023 #define InvalidAttrNumber 0
00024 #define MaxAttrNumber 32767
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #define AttributeNumberIsValid(attributeNumber) \
00035 ((bool) ((attributeNumber) != InvalidAttrNumber))
00036
00037
00038
00039
00040
00041 #define AttrNumberIsForUserDefinedAttr(attributeNumber) \
00042 ((bool) ((attributeNumber) > 0))
00043
00044
00045
00046
00047
00048
00049
00050
00051 #define AttrNumberGetAttrOffset(attNum) \
00052 ( \
00053 AssertMacro(AttrNumberIsForUserDefinedAttr(attNum)), \
00054 ((attNum) - 1) \
00055 )
00056
00057
00058
00059
00060
00061 #define AttrOffsetGetAttrNumber(attributeOffset) \
00062 ((AttrNumber) (1 + (attributeOffset)))
00063
00064 #endif