Specifies how source code identifiers and external names are interpreted.
Windows: External Procedures > Name Case Interpretation
Linux: None
Mac OS X: External Procedures > Name Case Interpretation
IA-32, Intel® 64, IA-64 architectures
Linux and Mac OS X: | -names keyword |
Windows: | /names:keyword |
keyword |
Specifies how to interpret the identifiers and external names in source code. Possible values are:
|
lowercase |
This is the default on Linux and Mac OS X systems. The compiler ignores case differences in identifiers and converts external names to lowercase. |
uppercase |
This is the default on Windows systems. The compiler ignores case differences in identifiers and converts external names to uppercase. |
This option specifies how source code identifiers and external names are interpreted. It can be useful in mixed-language programming.
This naming convention applies whether names are being defined or referenced.
You can use the ALIAS directive to specify an alternate external name to be used when referring to external subprograms.
On Windows systems, if you specify option /iface:cref, it overrides the default for external names and causes them to be lowercase. It is as if you specified "!dec$ attributes c, reference" for the external name.
If you specify option /iface:cref and want external names to be uppercase, you must explicitly specify option /names:uppercase.
names lowercase |
Linux and Mac OS X: -lowercase Windows: /Qlowercase |
names uppercase |
Linux and Mac OS X: -uppercase Windows: /Quppercase |