This is a tip to protect your code when interacting with third-party code.
This hint was introduced with the addition of Delphi for .net, because some other .net platforms are case sensitive.
Note that the hint does not imply any sensitivity to the incident in the Delphi part.
Only in paragraph 1 below is Delphi itself case sensitive, point 2 is an artifact of how the Delphi compiler calls the case-sensitive GetProcAddress()
function in the Windows API.
Delphi behavior-sensitive behavior
1-Component Registration
I don’t know any other case-sensitive tips, but note that when you write your own components and want to register them, the register function you declare should be written like this:
procedure Register; <<-- Leading capital required.
If you are not Delphi do not add your new component.
2-Import external functions
As David stated, when importing external functions, the exact case used in the DLL must be preserved.
Individual tips cannot be disabled
Note that you cannot disable a specific hint: Is it possible to disable certain Delphi hints?
Johan source share