Code that follows a consistent naming convention is self-documenting. In Delphi, all constant names should be in PascalCase and be prefixed with a consistent prefix.
The default prefix is C, but some projects may use another prefix to make their
constants distinct from those of other projects. This can make code that spans several projects
more easily understandable.
Rename the constant name to follow the convention.